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

BuildNativeShape() public method

public BuildNativeShape ( BulletWorld world, ShapeData shapeData ) : BulletShape
world BulletWorld
shapeData ShapeData
return BulletShape
        public override BulletShape BuildNativeShape(BulletWorld world, ShapeData shapeData)
        {
            BulletWorldUnman worldu = world as BulletWorldUnman;
            return new BulletShapeUnman(BSAPICPP.BuildNativeShape2(worldu.ptr, shapeData), shapeData.Type);
        }
BSAPIUnman