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

Legacy GM Is it possible to edit game maker texture pages like a surface?

For example, if you wanted to tint/change the game environment, you could redraw all the sprites in their new form directly to the texture page, rather than doing it in real time every step using a shader or even image blend.

I'm sure this could lead to other problems, similar to the problems you'd get with surfaces not existing randomly. But is this even possible to begin with? Without implementing an entirely custom sprite engine like this one.

I'm using studio not 2 btw.
 

GamerXP

Member
Sadly, no. You can create a surface that is a complete copy of original surface and use it for drawing with same UVs instead though. It's same in GMS2.
It's pretty sad because editing original texture can be really useful in some cases. I had to go with copy surface for my palette system before.
 
Top