| 12345678910111213141516171819 |
- if check_hitstop()
- exit;
- player_status_update();
- player_check_attacked();
- player_check_hazard();
- state();
- player_move_and_collide();
- /**/
- image_xscale = facing;
- if is_invincible && global.developer_mode
- image_blend = c_orange;
- else
- image_blend = c_white;
|