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

SetSleepingThresholds() public method

public SetSleepingThresholds ( BulletBody obj, float lin_threshold, float ang_threshold ) : void
obj BulletBody
lin_threshold float
ang_threshold float
return void
        public override void SetSleepingThresholds(BulletBody obj, float lin_threshold, float ang_threshold)
        {
            BulletBodyUnman bodyu = obj as BulletBodyUnman;
            BSAPICPP.SetSleepingThresholds2(bodyu.ptr, lin_threshold, ang_threshold);
        }
BSAPIUnman