Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Altheon

Pages: [1]
1
NGUI 3 Support / Re: Multiple UIPanel in the same hierarchy
« on: January 22, 2014, 05:27:05 AM »
Each level results in a new set of draw calls, but sure, you can do that.

Ah I see, all widgets depth depend on the UIPanel containing them not the hierarchy.

MenuWindow(UIPanel , depth : 0)
|
|
-----> CharacterAvatar(UIPanel, depth : 1)
          |
          |
          -----> Widget1(UIWidget , depth : 1)
          |
          |
          -----> FacePanel(UIPanel , depth : 2)
          |
          |
          -----> Widget2(UIWidget, depth : 3)

I tried this, Widget2 will be draw behind FacePanel even if the depth is higher and on the same hierarchy level.

It's clear now. Thank you very much  :D

2
NGUI 3 Support / Multiple UIPanel in the same hierarchy
« on: January 21, 2014, 10:23:20 PM »
I am just curious, is it okay to add another UIPanel on a child of another UIPanel ?

MenuWindow(UIPanel)
|
|
-----> CharacterAvatar(UIPanel)
          |
          |
          -----> FacePanel(UIPanel)

is there any effect to the drawcalls?

sorry noob question  ;D

3
NGUI 3 Support / Re: Progress bar overflow
« on: December 02, 2013, 05:06:17 AM »
I have the same exact problem on progress bar.
I doesn't happen on 3.0.6f1. Please fix this  :'(

Pages: [1]