FairyGUI.UIPainter.EM_Update C# (CSharp) Method

EM_Update() public method

public EM_Update ( UpdateContext context ) : void
context UpdateContext
return void
        public void EM_Update(UpdateContext context)
        {
            if (_renderer != null)
                _renderer.sortingOrder = context.renderingOrder++;
        }

Usage Example

 static public int EM_Update(IntPtr l)
 {
     try {
         FairyGUI.UIPainter     self = (FairyGUI.UIPainter)checkSelf(l);
         FairyGUI.UpdateContext a1;
         checkType(l, 2, out a1);
         self.EM_Update(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.UIPainter::EM_Update