Files
2026-03-04 10:03:45 +08:00

14 lines
163 B
C#

using System;
namespace RootMotion.FinalIK
{
[Serializable]
public enum FullBodyBipedChain
{
LeftArm = 0,
RightArm = 1,
LeftLeg = 2,
RightLeg = 3
}
}