Step_0.gml 263 B

12345678910111213141516171819
  1. if check_hitstop()
  2. exit;
  3. player_status_update();
  4. player_check_attacked();
  5. player_check_hazard();
  6. state();
  7. player_move_and_collide();
  8. /**/
  9. image_xscale = facing;
  10. if is_invincible && global.developer_mode
  11. image_blend = c_orange;
  12. else
  13. image_blend = c_white;