rope处理

This commit is contained in:
2026-02-22 18:34:37 +08:00
parent 54c8439024
commit 06bf72973c
45 changed files with 10342 additions and 502 deletions

View File

@@ -0,0 +1,27 @@
using System;
namespace PhysicsTools
{
[Serializable]
public class SegmentPropertiesBase
{
public float massPerUnitLength;
public int solverCount;
public float length;
public float linearDamping;
public float angularDamping;
public SegmentPropertiesBase()
{
massPerUnitLength = 10f;
solverCount = 255;
length = 1f;
linearDamping = 0.01f;
angularDamping = 0.01f;
}
}
}