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

GML How to select different arrays?

T

tijeseffff

Guest
As a tip to save a bit of typing,
Code:
if (global.pause) {
Functions identically to
Code:
if (global.pause == 1) {
And
Code:
if (!global.paused) {
Functions identically to
Code:
if (global.pause == 0) {
Eh, sorry for asking that late, but can you help me with views? What I shoud type in Draw event?
var x_start = view_xview[0] + 115?
 
Top