• 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!

Legacy GM [SOLVED] Draw Score In Other Event

M

MaikForte

Guest
Is there a way to invoke the draw_text function in other event aside from Draw?

Why do I want this?
- I want the score to be displayed AFTER the player died
 
Last edited by a moderator:
You can only draw in the draw events. If you to trigger something to draw from another event, create a variable for it and set it to false, then when you want it to draw, set it to true and check that variable in the draw event. Of course, you'll also have to set it back to false when you're done drawing.
 
M

MaikForte

Guest
@stainedofmind

Got it working now thank to you!

I had a different understanding when it comes to Draw event. I thought Draw even will only be invoked after Create event[/QUOTE]
 
Top