14 lines
163 B
C#
14 lines
163 B
C#
using System;
|
|
|
|
namespace RootMotion.FinalIK
|
|
{
|
|
[Serializable]
|
|
public enum FullBodyBipedChain
|
|
{
|
|
LeftArm = 0,
|
|
RightArm = 1,
|
|
LeftLeg = 2,
|
|
RightLeg = 3
|
|
}
|
|
}
|