UnityPlatformer.Cooldown.Ready C# (CSharp) Method

Ready() public method

Is ready? cooldown expired?
public Ready ( ) : bool
return bool
    public bool Ready() {
      return counter >= seconds;
    }
    /// <summary>

Usage Example

        public override int WantsToUpdate(float delta)
        {
            bool onGrabbableArea = character.IsOnArea(Areas.Grabbable);

            if (onGrabbableArea && canGrab.Ready())
            {
                return(priority);
            }
            return(0);
        }
All Usage Examples Of UnityPlatformer.Cooldown::Ready