eastern-flames/eastern flames/objects/o_damage/Draw_0.gml

17 lines
492 B
Plaintext
Raw Normal View History

2022-08-23 09:25:43 +00:00
//if ARTICULATOR.waiting
2022-08-23 08:34:45 +00:00
cpp();
draw_set_color(c_black);
//draw_set_alpha(0.25);
//draw_circle(x,y,5,false);
//draw_set_alpha(1);
var worldMat = matrix_get(matrix_world);
//this is the location of where i want to draw from !!!
var worldMat2 = matrix_build(x,y+6,0,50,0,0,0.6,0.6,0.6);
matrix_set(matrix_world,worldMat2);
draw_set_halign(fa_center);
draw_text(0, 0, amount);
draw_set_halign(fa_left);
//draw_set_color(c_red);
//draw_circle(x, y, 5, false);
matrix_set(matrix_world,worldMat);