• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

How do I draw text from script? [SOLVED]

G

GrayDwarf

Guest
Not sure what I'm doing wrong but I can't figure out why my text isn't showing up. I have a script (file) called TileClicked and I call it from a 'mouse pressed' event. The message "making it here" shows up in the console output so what sorts of things should I be looking for?
Code:
show_debug_message("making it here")
draw_set_halign(fa_left);
draw_set_font(font0);
draw_set_colour(c_black); 
draw_text(10, 10, "wtf");
 
Top