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

CreateGroundPlaneShape() public method

public CreateGroundPlaneShape ( uint id, float height, float collisionMargin ) : BulletShape
id uint
height float
collisionMargin float
return BulletShape
        public override BulletShape CreateGroundPlaneShape(uint id, float height, float collisionMargin)
        {
            return new BulletShapeUnman(BSAPICPP.CreateGroundPlaneShape2(id, height, collisionMargin),
                BSPhysicsShapeType.SHAPE_GROUNDPLANE);
        }
BSAPIUnman