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

Help quick

Yal

🐧 *penguin noises*
GMC Elder
Change this line

Code:
draw_text (menu_x, menu_y + button_h * i, button[i]);



to be like this instead
Code:
draw_text (menu_x+ button_h * i, menu_y, button[i]);
 
S

SpaceKill

Guest
Change this line

Code:
draw_text (menu_x, menu_y + button_h * i, button[i]);


to be like this instead
Code:
draw_text (menu_x+ button_h * i, menu_y, button[i]);
It works but the words are stuck together. How do I distance them ?
 
S

SpaceKill

Guest
So far I've only gotten them like this.What else do I need to do. I'm only a beginner and English is not my first language and i'd appreciate some more in-depth answers please
 

Yal

🐧 *penguin noises*
GMC Elder
Use menu_x for the x position (set it to room_width*0.25) and make button_h bigger (room_width*0.5).
 
Top