Universe.Physics.BulletSPlugin.BSAPIXNA.GetContactBreakingThreshold C# (CSharp) Method

GetContactBreakingThreshold() public method

public GetContactBreakingThreshold ( BulletShape pShape, float defaultFactor ) : float
pShape BulletShape
defaultFactor float
return float
        public override float GetContactBreakingThreshold(BulletShape pShape, float defaultFactor)
        {
            CollisionShape shape = (pShape as BulletShapeXNA).shape;
            return shape.GetContactBreakingThreshold(defaultFactor);
        }
BSAPIXNA