talksprite placing

This commit is contained in:
the me 2022-08-22 22:23:02 -07:00
parent 8d3617fe53
commit 337f705dfe
72 changed files with 988 additions and 157 deletions

View file

@ -1,6 +1,10 @@
if hoveredunit != noone {
draw_set_color(c_white);
draw_set_font(ft_chiaro);
draw_set_color(c_black);
draw_sprite_ext(s_box, 0, 0, 0, string_width(hoveredunit.data.name)/30+.5, .75, 0, c_white, 1);
draw_set_halign(fa_center);
draw_text(7+string_width(hoveredunit.data.name)/2, -10, hoveredunit.data.name);
draw_sprite(hoveredunit.data.face, 0, 32, 53);
//draw_rectangle(global.gw, global.gh, global.gw-140, global.gh-(array_length(hoveredunit.inventory)-1)*32-16, false);
//draw_sprite(s_box, 0, global.gw-140, global.gh-(array_length(hoveredunit.inventory)-1)*32-16);
draw_sprite_ext(s_box, 0, global.gw, global.gh, 4, .5+((array_length(hoveredunit.inventory)-1)*32-16)/30, 180, c_white, 1);
@ -15,11 +19,11 @@ if hoveredunit != noone {
var dudes = c_getstats(hoveredunit);
draw_set_color(c_black);
//draw_rectangle(0, 0, 100, (array_length(dudes)-1)*32+16, false);
draw_sprite_ext(s_box, 0, 0, 0, 2.5, .5+((array_length(dudes)-1)*32-16)/30, 0, c_white, 1);
draw_sprite_ext(s_box, 0, 0, 85, 2.5, -.5+((array_length(dudes)-1)*32-16)/30, 0, c_white, 1);
draw_set_color(c_white);
var i;
for (i=0; i<array_length(dudes); i++) {
draw_text(10, 5+i*20, dudes[i].name + ": " + string(dudes[i].val));
draw_text(10, 78+i*20, dudes[i].name + ": " + string(dudes[i].val));
}
draw_set_halign(fa_left);
}