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

Inventory

P

Phemus

Guest
I need a inventory that's can affort many blocks. My game is like level editor. (not all) You can change blocks with mouse wheel and there will be no amount of the blocks cause this game is like in creative mode :D
 
D

DevNorway

Guest
Well.. We are not here to write your code. You could set up an array with either a for loop, dependant on what you want, or initialize the arrays with their "sprite".
Code:
block[0] = sprite_1;
block[1] = sprite_2;
etc..
 
Top