Hi admin and communitication !
I'm using NGUI and 2D Toolkit together for my game. I'm using NGUI for GUI and 2D Toolkit for only animation, sprites...
But I have problems with camera.
* First, i create Camera of NGUI for only GUI :
- I created layer is GUI for element of NGUI.
- Camera' attribute are:
+ Clear Flags : Skybox
+ Culling Mask : GUI
+ Projection : Orthographic
+ Size : 1
+ Depth : 1
* After that: I create an another camera, but it of 2D Toolkit with name is tk2dcamera.
- Camera' attribute are:
+ Clear Flags : Skybox
+ Culling Mask : Everything exception GUI layer.
+ Projection : Orthographic
+ Size : 30
+ Depth : 0
Then, i create sprites collection with size is 30.
But when i play, only show background of NGUI's Camera, and sprites of 2D Toolkit's Camera did not show.
So, How i can show sprite of 2D Toolkit' Camera with GUI of NGUI's Camera together ? Many Thanks