touhou-pride-jam-2021/thpj3/objects/obj_boss_parent/Draw_0.gml

10 lines
380 B
Plaintext
Raw Normal View History

2021-06-12 14:57:20 -07:00
image_xscale = face_dir;
draw_self();
2021-06-13 02:20:47 -07:00
/* debug text
2021-06-12 14:57:20 -07:00
draw_set_font(fn_GUI);
draw_text(1000, 70, "boss mode: " + string(phase_mode) );
draw_text(1000, 90, "boss invuln: " + string(invuln) );
draw_text(1000, 110, "boss HP: " + string(hp) + " / " + string(phase_hp[current_phase]) );
draw_text(1000, 130, "boss phase: " + string(current_phase) + " / " + string(phases) );
2021-06-13 02:20:47 -07:00
*/