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

GameMaker how 2 grab view_xview[0]

trying 2 draw text relative 2 view[0]s x/y coordinates
used 2 b

Code:
draw_text(view_xview[0]+12,view_yview[0]+12,string(fps));
but not now
so what do i put 4 view_xview[0] instead?
 

obscene

Member
They are still global variables but have a value of 0. But set their values like Simon demonstrated each step and you can use them like you are used to.
 
Top