1
NGUI 3 Support / Re: Refresh Problem
« on: September 06, 2016, 05:24:48 AM »
Fixed with this :
It is not a good solution, but it works. Also report Unity this "Bug" with its SceneManager.
via : http://www.tasharen.com/forum/index.php?topic=13965.0
- foreach(var dc in UIDrawCall.activeList)
- {
- SceneManager.MoveGameObjectToScene(dc.gameObject, scene);
- }
- foreach (var dc in UIDrawCall.inactiveList)
- {
- SceneManager.MoveGameObjectToScene(dc.gameObject, scene);
- }
It is not a good solution, but it works. Also report Unity this "Bug" with its SceneManager.
via : http://www.tasharen.com/forum/index.php?topic=13965.0
