4
0
Fork 0
This repository has been archived on 2023-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
surprise_dungeon/objects/oPlayer/Draw_0.gml

7 lines
307 B
Plaintext
Raw Permalink Normal View History

2020-12-05 17:56:12 +00:00
// Suppression de l'invinsibilité
if (inv > 0) {
inv--;
2020-12-06 16:05:26 +00:00
draw_sprite_ext(sprite_index, image_index, x, y, image_xscale, image_yscale, image_angle, c_red, image_alpha);
2020-12-05 17:56:12 +00:00
} else {
draw_sprite_ext(sprite_index, image_index, x, y, image_xscale, image_yscale, image_angle, image_blend, image_alpha);
}