FairyGUI.UIPanel.EM_BeforeUpdate C# (CSharp) Method

EM_BeforeUpdate() public method

public EM_BeforeUpdate ( ) : void
return void
        public void EM_BeforeUpdate()
        {
            if (container == null)
                CreateContainer();

            if (packageName != null && componentName != null && _ui == null)
                CreateUI_EditMode();

            if (screenSizeVer != StageCamera.screenSizeVer)
                HandleScreenSizeChanged();
        }

Usage Example

示例#1
0
 static public int EM_BeforeUpdate(IntPtr l)
 {
     try {
         FairyGUI.UIPanel self = (FairyGUI.UIPanel)checkSelf(l);
         self.EM_BeforeUpdate();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.UIPanel::EM_BeforeUpdate