Hi! I'm working on a strategy game where, at some point, I need to display a sequence of very high-resolution renders and show each one of them on screen for a few seconds. The renders are displayed inside an NGUI panel. So far, I've managed to devise a solution that involves manually creating lots of NGUI texture atlas, fill them with a few of the aforementioned renders (as sprites) and just retrieve the appropriate one at runtime. It's working as expected, but the problem is that my game is going to feature hundreds of these renders and I'd like to find a solution that doesn't involve me manually setting up all the atlases.
My question is: is there any way to be able to render a sprite inside an NGUI panel without having to actually put that sprite inside an NGUI atlas first?
Thanks in advance for your help!
--Nacho