Universe.Physics.BulletSPlugin.BSAPIXNA.RemoveConstraintRef C# (CSharp) Method

RemoveConstraintRef() public method

public RemoveConstraintRef ( BulletBody pBody, BulletConstraint pConstraint ) : void
pBody BulletBody
pConstraint BulletConstraint
return void
        public override void RemoveConstraintRef(BulletBody pBody, BulletConstraint pConstraint)
        {
            RigidBody body = (pBody as BulletBodyXNA).rigidBody;
            TypedConstraint constrain = (pConstraint as BulletConstraintXNA).constrain;
            body.RemoveConstraintRef(constrain);
        }
BSAPIXNA