Ejemplo n.º 1
0
 public static extern IntPtr CreatePulleyJoint(IntPtr w, PulleyJointDef def);
Ejemplo n.º 2
0
 public static extern IntPtr CreatePulleyJoint( IntPtr w, PulleyJointDef def );
Ejemplo n.º 3
0
 // Use this for initialization
 protected override IntPtr Init()
 {
     PulleyJointDef jd = new PulleyJointDef(other.body, body.body);
     jd.Initialize(other.body,body.body, groundAnchorA, groundAnchorB, anchorA, anchorB, ratio);
     return API.CreatePulleyJoint( B2DWorld.instance.world, jd );
 }