Exemplo n.º 1
0
 private BoneDef(BoneType type, BoneType parentType, BoneType mirrorType, JointType headJointType, JointType tailJointType, BoneDirection tPoseDirection, bool isEnd)
 {
     Type = type;
     ParentType = parentType;
     MirrorType = mirrorType;
     HeadJointType = headJointType;
     TailJointType = tailJointType;
     IsEnd = isEnd;
     TPoseDirection = tPoseDirection;
 }
Exemplo n.º 2
0
 private BoneDef(BoneType type, BoneType parentType, JointType headJointType, JointType tailJointType, BoneDirection tPoseDirection)
     : this(type, parentType, headJointType, tailJointType, tPoseDirection, false)
 {
 }
Exemplo n.º 3
0
 private BoneDef(BoneType type, BoneType parentType, JointType headJointType, JointType tailJointType, BoneDirection tPoseDirection, bool isEnd)
     : this(type, parentType, type, headJointType, tailJointType, tPoseDirection, isEnd)
 {
 }