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

20 lines
262 B
C#

using System;
namespace PhysicsTools
{
[Serializable]
public class SegmentPropertiesBox : SegmentPropertiesBase
{
public float width;
public float height;
public SegmentPropertiesBox()
{
length = 1f;
width = 0.05f;
height = 0.2f;
}
}
}