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

DumpCollisionShape() public method

public DumpCollisionShape ( BulletWorld world, BulletShape collisionShape ) : void
world BulletWorld
collisionShape BulletShape
return void
        public override void DumpCollisionShape(BulletWorld world, BulletShape collisionShape)
        {
            BulletWorldUnman worldu = world as BulletWorldUnman;
            BulletShapeUnman shapeu = collisionShape as BulletShapeUnman;
            BSAPICPP.DumpCollisionShape2(worldu.ptr, shapeu.ptr);
        }
BSAPIUnman