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

SetBreakingImpulseThreshold() public method

public SetBreakingImpulseThreshold ( float threshold ) : bool
threshold float
return bool
        public bool SetBreakingImpulseThreshold(float threshold)
        {
            bool ret = false;
            if (m_enabled)
                ret = PhysicsScene.PE.SetBreakingImpulseThreshold(m_constraint, threshold);
            return ret;
        }
    }