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

CreateGImpactShape() public method

public CreateGImpactShape ( BulletWorld world, int indicesCount, int indices, int verticesCount, float vertices ) : BulletShape
world BulletWorld
indicesCount int
indices int
verticesCount int
vertices float
return BulletShape
        public override BulletShape CreateGImpactShape(BulletWorld world,
                int indicesCount, int[] indices,
                int verticesCount, float[] vertices)
        {
            BulletWorldUnman worldu = world as BulletWorldUnman;
            return new BulletShapeUnman(
                    BSAPICPP.CreateGImpactShape2(worldu.ptr, indicesCount, indices, verticesCount, vertices),
                    BSPhysicsShapeType.SHAPE_GIMPACT);
        }
BSAPIUnman