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