This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
I'm trying to draw text displaying how many enemies the player has killed and how long they have survived for. When I run my game, black boxes appear where my text should be. I've tried looking it up but can't seem to find any help. Here's the code:
draw_set_font(fnt_HUD);
draw_set_colour(c_black);
draw_text(view_xview[view_current] 16, view_yview[view_current] 16, "Survived For: " string(time));
draw_text(view_xview[view_current] 16, view_yview[view_current] 32, "Zombies Killed: " string(global.kills));
Subreddit
Post Details
- Posted
- 2 years ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/gamemaker/c...