The Coordinate Block is used in various actions and triggers. It lets you:

EyeAuras uses three main coordinate systems:
Absolute coordinates on the screen. Usually, the top-left corner is (0,0), and the bottom-right corner matches your screen resolution, for example 1920x1080. If you use multiple monitors, the top-left corner can be negative.
When should you use them?
Coordinates relative to the top-left corner of a window.
When should you use them?
Coordinates relative to a detected object inside the window.
When should you use them?
A rectangle is defined by its X and Y coordinates, along with its Width and Height.
The Offset parameters (X, Y, Width, Height) let you shift the overlay position further. For example:
(100, 100)(10, 20)(110, 120)In EyeAuras, there are two types of anchors:
Defines the anchor point inside a window or rectangle. Position and offset are calculated relative to that point.
Example: if the anchor is set to TopLeft, the position and offset refer to the top-left corner of the window. If it is set to Center, they refer to the center of the window.

(300, 100), Size: (200, 100), Offset: (0, 0, 0, 0) (300, 100, 200, 100)(300, 100), Size: (200, 100), Offset: (100, 50, 0, 0) (400, 150, 200, 100)(300, 100), Size: (200, 100), Offset: (0, 0, 0, 0) (200, 100, 200, 100)(300, 100), Size: (200, 100), Offset: (100, 50, 0, 0) (250, 150, 200, 100)(300, 100), Size: (200, 100), Offset: (0, 0, 0, 0) (100, 100, 200, 100)(300, 100), Size: (200, 100), Offset: (100, 50, 0, 0) (200, 150, 200, 100)(300, 100), Size: (200, 100), Offset: (0, 0, 0, 0) (100, 50, 200, 100)(300, 100), Size: (200, 100), Offset: (100, 50, 0, 0) (200, 75, 200, 100)(300, 100), Size: (200, 100), Offset: (0, 0, 0, 0) (100, 0, 200, 100)(300, 100), Size: (200, 100), Offset: (100, 50, 0, 0) (200, -50, 200, 100)(300, 100), Size: (200, 100), Offset: (0, 0, 0, 0) (200, 0, 200, 100)(300, 100), Size: (200, 100), Offset: (100, 50, 0, 0) (250, -50, 200, 100)(300, 100), Size: (200, 100), Offset: (0, 0, 0, 0) (300, 50, 200, 100)(300, 100), Size: (200, 100), Offset: (100, 50, 0, 0) (400, 75, 200, 100)(300, 100), Size: (200, 100), Offset: (0, 0, 0, 0) (200, 50, 200, 100)(300, 100), Size: (200, 100), Offset: (100, 50, 0, 0) (250, 25, 200, 100)Used in special cases to align content inside a rectangle or window.
