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

SetShapeCollisionMargin() public method

public SetShapeCollisionMargin ( BulletShape shape, float margin ) : void
shape BulletShape
margin float
return void
        public override void SetShapeCollisionMargin(BulletShape shape, float margin)
        {
            BulletShapeUnman shapeu = shape as BulletShapeUnman;
            if (shapeu != null && shapeu.HasPhysicalShape)
                BSAPICPP.SetShapeCollisionMargin(shapeu.ptr, margin);
        }
BSAPIUnman