We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca810e commit af37209Copy full SHA for af37209
scripts/input_cursor_limit_get/input_cursor_limit_get.gml
@@ -11,16 +11,16 @@ function input_cursor_limit_get(_player_index = 0)
11
with(_global.__players[_player_index].__cursor)
12
{
13
return {
14
- left: __limit_l,
15
- top: __limit_t,
16
- right: __limit_r,
17
- bottom: __limit_b,
+ __left: __limit_l,
+ __top: __limit_t,
+ __right: __limit_r,
+ __bottom: __limit_b,
18
19
- circle_x: __limit_x,
20
- circle_y: __limit_y,
21
- circle_radius: __limit_radius,
+ __circle_x: __limit_x,
+ __circle_y: __limit_y,
+ __circle_radius: __limit_radius,
22
23
- boundary_margin: __limit_boundary_margin,
+ __boundary_margin: __limit_boundary_margin,
24
}
25
26
0 commit comments