SunsetHigh.Character.inRangeCollide C# (CSharp) Méthode

inRangeCollide() public méthode

Checks if this Character is in a given range for collisions
public inRangeCollide ( IInteractable other ) : bool
other IInteractable The other Sprite to range check against
Résultat bool
        public bool inRangeCollide(IInteractable other)
        {
            return inRange(other, COLLISION_OFFSET);
        }