containsLocalPoint method

bool containsLocalPoint(
  1. Vector2 point
)
inherited

Checks whether the point is within this component's bounds.

This method should be implemented for any component that has a visual representation and non-zero size. The point is in the local coordinate space.

Implementation

bool containsLocalPoint(Vector2 point) => false;