init
This commit is contained in:
commit
0556f63d2d
119 changed files with 2908 additions and 0 deletions
8
objects/obGuiButton/Step_0.gml
Normal file
8
objects/obGuiButton/Step_0.gml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
__x = camera_get_view_x(view_camera[0]);
|
||||
__y = camera_get_view_y(view_camera[0]);
|
||||
x = _x + __x;
|
||||
y = _y + __y;
|
||||
if (mouse_x >= x and mouse_x <= x + width) and (mouse_y >= y and mouse_y <= y + height) and mouse_check_button_pressed(mb_left)
|
||||
{
|
||||
alarm[0] = 1;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue