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)         {  

NGUI 4 (重点) UIPanel最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/4074.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>