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

Deactivating tiles outside of the view?

L

Latteid

Guest
Hello, I'm looking into add more details to my level using the tile system, but I'm worried that it could lead to some performance issues if I use too much of it.
I already use the function deactivate instance for some objects outside of the view and I was thinking, Is there something like that for tiles?
 

TheouAegis

Member
No. You don't need it. Tiles outside the view aren't drawn and you shouldn't be using any of the tile_* functions outside the Create Event or in very special situations, since it's the tile_* functions that will slow the game down the most.
 
Top