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

String to integer

E

elementbound

Guest
Also note that real converts to a number with decimals. So, real("8.72") will not result in an integer, but a float. If you suspect that the string might not contain an integer, use floor() or round() after that, like so: floor(real("8.72"))
 
Top