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

GetContactBreakingThreshold() public method

public GetContactBreakingThreshold ( BulletShape shape, float defaultFactor ) : float
shape BulletShape
defaultFactor float
return float
        public override float GetContactBreakingThreshold(BulletShape shape, float defaultFactor)
        {
            BulletShapeUnman shapeu = shape as BulletShapeUnman;
            return BSAPICPP.GetContactBreakingThreshold2(shapeu.ptr, defaultFactor);
        }
BSAPIUnman