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

RemoveObjectFromWorld() public method

public RemoveObjectFromWorld ( BulletWorld world, BulletBody obj ) : bool
world BulletWorld
obj BulletBody
return bool
        public override bool RemoveObjectFromWorld(BulletWorld world, BulletBody obj)
        {
            BulletWorldUnman worldu = world as BulletWorldUnman;
            BulletBodyUnman bodyu = obj as BulletBodyUnman;
            return BSAPICPP.RemoveObjectFromWorld2(worldu.ptr, bodyu.ptr);
        }
BSAPIUnman