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