SunsetHigh.Character.inRangeAction C# (CSharp) Метод

inRangeAction() публичный Метод

Checks if this Character is in a given range to perform an action such as talking or pickpocketing
public inRangeAction ( IInteractable other ) : bool
other IInteractable The other Sprite to range check against
Результат bool
        public bool inRangeAction(IInteractable other)
        {
            return inRange(other, ACTION_OFFSET);
        }