WarTornLands.Entities.Modules.Think.Parts.JumpAbility.TryExecute C# (CSharp) Method

TryExecute() public method

Tries to execute a jump.
public TryExecute ( ) : bool
return bool
        public bool TryExecute()
        {
            if (_cm.GetPercentage(_cJump) == 0)
            {
                _cm.StartCounter(Duration, false, _cJump);
                return true;
            }
            else return false;
        }