目录结构调整
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user