Skip to content

Commit af37209

Browse files
committed
Prefix cursor limit status names
1 parent 9ca810e commit af37209

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

scripts/input_cursor_limit_get/input_cursor_limit_get.gml

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ function input_cursor_limit_get(_player_index = 0)
1111
with(_global.__players[_player_index].__cursor)
1212
{
1313
return {
14-
left: __limit_l,
15-
top: __limit_t,
16-
right: __limit_r,
17-
bottom: __limit_b,
14+
__left: __limit_l,
15+
__top: __limit_t,
16+
__right: __limit_r,
17+
__bottom: __limit_b,
1818

19-
circle_x: __limit_x,
20-
circle_y: __limit_y,
21-
circle_radius: __limit_radius,
19+
__circle_x: __limit_x,
20+
__circle_y: __limit_y,
21+
__circle_radius: __limit_radius,
2222

23-
boundary_margin: __limit_boundary_margin,
23+
__boundary_margin: __limit_boundary_margin,
2424
}
2525
}
2626
}

0 commit comments

Comments
 (0)