ApplyModifiedProperties() public method

public ApplyModifiedProperties ( ) : void
return void
 static public int ApplyModifiedProperties(IntPtr l)
 {
     try {
         FairyGUI.UIContentScaler self = (FairyGUI.UIContentScaler)checkSelf(l);
         self.ApplyModifiedProperties();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #2
0
 static int ApplyModifiedProperties(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         FairyGUI.UIContentScaler obj = (FairyGUI.UIContentScaler)ToLua.CheckObject(L, 1, typeof(FairyGUI.UIContentScaler));
         obj.ApplyModifiedProperties();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }