目录结构调整
This commit is contained in:
16
Assets/Scripts/ThirdParty/PhysicsTools/SegmentPropertiesCylinder.cs
vendored
Normal file
16
Assets/Scripts/ThirdParty/PhysicsTools/SegmentPropertiesCylinder.cs
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace PhysicsTools
|
||||
{
|
||||
[Serializable]
|
||||
public class SegmentPropertiesCylinder : SegmentPropertiesBase
|
||||
{
|
||||
public float radius;
|
||||
|
||||
public SegmentPropertiesCylinder()
|
||||
{
|
||||
length = 1f;
|
||||
radius = 0.1f;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user