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

SetBreakingImpulseThreshold() public method

public SetBreakingImpulseThreshold ( BulletConstraint pConstraint, float threshold ) : bool
pConstraint BulletConstraint
threshold float
return bool
        public override bool SetBreakingImpulseThreshold(BulletConstraint pConstraint, float threshold)
        {
            Generic6DofConstraint constraint = (pConstraint as BulletConstraintXNA).constrain as Generic6DofConstraint;
            constraint.SetBreakingImpulseThreshold(threshold);
            return true;
        }
        public override bool HingeSetLimits(BulletConstraint pConstraint, float low, float high, float softness, float bias, float relaxation)
BSAPIXNA