예제 #1
0
 // Token: 0x06000161 RID: 353 RVA: 0x0000F33C File Offset: 0x0000D53C
 public void FromPmxIK(PmxIK ik)
 {
     this.Target    = ik.Target;
     this.LoopCount = ik.LoopCount;
     this.Angle     = ik.Angle;
     this.LinkList  = new List <PmxIK.IKLink>();
     for (int i = 0; i < ik.LinkList.Count; i++)
     {
         this.LinkList.Add(ik.LinkList[i].Clone());
     }
 }
예제 #2
0
 public PmxBone()
 {
     Name  = "";
     NameE = "";
     ClearFlags();
     Parent    = -1;
     To_Bone   = -1;
     To_Offset = Vector3.Zero;
     AddParent = -1;
     AddRatio  = 1f;
     Level     = 0;
     ClearLocal();
     IK     = new PmxIK();
     IKKind = IKKindType.None;
 }
예제 #3
0
 // Token: 0x06000160 RID: 352 RVA: 0x0000F329 File Offset: 0x0000D529
 public PmxIK(PmxIK ik)
 {
     this.FromPmxIK(ik);
 }
예제 #4
0
 public PmxIK(PmxIK ik)
 {
     FromPmxIK(ik);
 }