ApplyModifiedProperties() public méthode

public ApplyModifiedProperties ( bool sortingOrderChanged ) : void
sortingOrderChanged bool
Résultat void
 static public int ApplyModifiedProperties(IntPtr l)
 {
     try {
         FairyGUI.UIPainter self = (FairyGUI.UIPainter)checkSelf(l);
         System.Boolean     a1;
         checkType(l, 2, out a1);
         self.ApplyModifiedProperties(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemple #2
0
 static int ApplyModifiedProperties(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         FairyGUI.UIPainter obj = (FairyGUI.UIPainter)ToLua.CheckObject(L, 1, typeof(FairyGUI.UIPainter));
         bool arg0 = LuaDLL.luaL_checkboolean(L, 2);
         obj.ApplyModifiedProperties(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }