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

DumpConstraint() public method

public DumpConstraint ( BulletWorld world, BulletConstraint constrain ) : void
world BulletWorld
constrain BulletConstraint
return void
        public override void DumpConstraint(BulletWorld world, BulletConstraint constrain)
        {
            BulletWorldUnman worldu = world as BulletWorldUnman;
            BulletConstraintUnman constrainu = constrain as BulletConstraintUnman;
            BSAPICPP.DumpConstraint2(worldu.ptr, constrainu.ptr);
        }
BSAPIUnman