so_many_mars/objects/oEnemy/Draw_0.gml

10 lines
324 B
Plaintext
Raw Normal View History

2022-02-21 23:45:19 +00:00
/// @description Insert description here
// You can write your code in this editor
draw_sprite(sprite_index, image_index, x, y);
if (oGame.Debug) {
draw_set_alpha(0.5);
draw_circle_color(x,y, 16, c_red, c_blue, false);
//draw_rectangle_colour(bbox_left,bbox_top,bbox_right,bbox_bottom,c_red,c_red,c_red,c_red,false);
}