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

RemoveConstraintRef() public method

public RemoveConstraintRef ( BulletBody obj, BulletConstraint constrain ) : void
obj BulletBody
constrain BulletConstraint
return void
        public override void RemoveConstraintRef(BulletBody obj, BulletConstraint constrain)
        {
            BulletBodyUnman bodyu = obj as BulletBodyUnman;
            BulletConstraintUnman constrainu = constrain as BulletConstraintUnman;
            BSAPICPP.RemoveConstraintRef2(bodyu.ptr, constrainu.ptr);
        }
BSAPIUnman