Whether a point is within the boundaries of the visible part of the game.
@override bool containsLocalPoint(Vector2 p) { return p.x >= 0 && p.y >= 0 && p.x < size.x && p.y < size.y; }