1
0

Step_0.gml 164 B

1234567891011
  1. if global.hitstop > 0
  2. global.hitstop--;
  3. if global.developer_mode
  4. {
  5. if mouse_check_button_pressed(mb_left)
  6. {
  7. oPlayer.x = mouse_x;
  8. oPlayer.y = mouse_y;
  9. }
  10. }