10 lines
324 B
Plaintext
10 lines
324 B
Plaintext
|
/// @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);
|
||
|
}
|