Hey everyone!
In our game, we are using 2 UI plugins: NGUI and 2D Toolkit. Our gameplay scene uses both: NGUI for the UI/HUD (because NGUI), and 2D Toolkit for the gameplay (because performance with animations). Now, we have some assets that are used in both the UI and the Gameplay elements of that scene, and this results in a fair bit of asset duplication (between NGUI's Atlases and 2D Toolkit's Sprite Collections), which is going to grow steadily through the course of the project.
We want to stop duplicating these assets. Will you help me figure out how?
Some options we see:
- Stop using 2d Toolkit, and see what kind of performance hit we take for animating things in NGUI. Is there anything concrete to be known about NGUI's performance with animations, scaling, moving objects, etc?
- Build everything out of 2D Toolkit , and give up NGUI's anchoring system and other amazing features. We'd rather avoid this.
- Find a design solution around this. Use separate and smaller assets within the gameplay, eg.
Our thinking is that we can't be the only people that have run into this. What's been tried before, what's worked, what's possible that we're missing?
Thanks!