コード例 #1
0
 public LimitCommon(Spring spring, float restitution = 0f)
 {
     this.contactDist = -1f;
     this.restitution = restitution;
     this.spring      = spring;
 }
コード例 #2
0
 private static extern void Internal_setSpring(IntPtr thisPtr, ref Spring value);
コード例 #3
0
 public LimitCommon(float contactDist = -1f)
 {
     this.contactDist = contactDist;
     this.restitution = 0f;
     this.spring      = Spring.Default();
 }
コード例 #4
0
 private static extern void Internal_getSpring(IntPtr thisPtr, out Spring __output);