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

28 lines
720 B
Plaintext
Raw Normal View History

2022-08-17 06:45:08 +00:00
draw_set_color(c_gray);
draw_set_alpha(0.25);
draw_circle(x,y+5,10,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,0,90,0,0,1,1,1);
matrix_set(matrix_world,worldMat2);
2022-08-16 22:28:01 +00:00
if waiting image_blend = c_grey else image_blend = c_white;
2022-08-17 06:45:08 +00:00
var tempx = x;
var tempy = y;
x = 0;
y = 0;
2022-08-15 02:35:57 +00:00
draw_self();
2022-08-15 04:06:41 +00:00
drawstate();
2022-08-17 06:45:08 +00:00
x = tempx;
y = tempy;
2022-08-16 01:01:09 +00:00
//log(data);
2022-08-15 17:51:51 +00:00
draw_set_color(c_red);
2022-08-17 16:49:45 +00:00
draw_rectangle(0-ts.x/2, 0-sprite_height-1,
2022-08-17 06:45:08 +00:00
0-ts.x/2+(ts.x*(data.hp.val/data.hp.cap)),
2022-08-17 16:49:45 +00:00
0-sprite_height+1, false
2022-08-15 17:51:51 +00:00
);
2022-08-17 16:49:45 +00:00
draw_text(0, 0-sprite_height-4, data.hp.val);
2022-08-15 02:35:57 +00:00
//draw_set_color(c_red);
2022-08-17 06:45:08 +00:00
//draw_circle(x, y, 5, false);
matrix_set(matrix_world,worldMat);