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

DeleteCollisionShape() public method

public DeleteCollisionShape ( BulletWorld world, BulletShape shape ) : bool
world BulletWorld
shape BulletShape
return bool
        public override bool DeleteCollisionShape(BulletWorld world, BulletShape shape)
        {
            BulletWorldUnman worldu = world as BulletWorldUnman;
            BulletShapeUnman shapeu = shape as BulletShapeUnman;
            return BSAPICPP.DeleteCollisionShape2(worldu.ptr, shapeu.ptr);
        }
BSAPIUnman