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

BuildHullShapeFromMesh() public method

public BuildHullShapeFromMesh ( BulletWorld world, BulletShape meshShape, HACDParams parms ) : BulletShape
world BulletWorld
meshShape BulletShape
parms HACDParams
return BulletShape
        public override BulletShape BuildHullShapeFromMesh(BulletWorld world, BulletShape meshShape, HACDParams parms)
        {
            BulletWorldUnman worldu = world as BulletWorldUnman;
            BulletShapeUnman shapeu = meshShape as BulletShapeUnman;
            return new BulletShapeUnman(
                BSAPICPP.BuildHullShapeFromMesh2(worldu.ptr, shapeu.ptr, parms),
                BSPhysicsShapeType.SHAPE_HULL);
        }
BSAPIUnman