NGUI 4 (重点) UIPanel
UIPanel中的核心流程在
LateUpdate方法中:
void LateUpdate () //核心方法 更新所有Panel和DrawCall
// 按顺序更新每一个Panel,list是一个静态的UIPanel列表,表明所有UIPanel公用只有一个。
for (int i = 0, imax = list.Count; i < imax; ++i) list[i].UpdateSelf(); //更新所有DrawCall for (int i = 0, imax = list.Count; i < imax; ++i) { UIPanel p = list[i]; //如果渲染次序设置为Automatic 则渲染顺序是从底层开始往上 if (p.renderQueue == RenderQueue.Automatic) {
共有 0 条评论