Files
Fishing2/Assets/Scripts/ThirdParty/PhysicsTools/SegmentPropertiesCylinder.cs
2025-08-28 00:20:12 +08:00

17 lines
231 B
C#

using System;
namespace PhysicsTools
{
[Serializable]
public class SegmentPropertiesCylinder : SegmentPropertiesBase
{
public float radius;
public SegmentPropertiesCylinder()
{
length = 1f;
radius = 0.1f;
}
}
}