Is it possible to merge various sprites into one? I´ve created a game where you add ingrediences to a pizza. After some time there are more than 50 sprites that make the game overstalled. Is it possible to convert them into one object?
Develop games in your browser. Powerful, performant & highly capable.
I'm not sure, but you should check if it's possible to edit containers in runtime.
If so, you could add your ingredients to the pizza container.
Just a thought
other thought: use Canvas. With this, you can just overwrite the canvas with the added ingredient (no need to add new sprites every time). There is a 3rd Party plugin for Canvas.
Thank you guys, I'll try it