static public int HandleControllerChanged(IntPtr l)
 {
     try {
         FairyGUI.GImage     self = (FairyGUI.GImage)checkSelf(l);
         FairyGUI.Controller a1;
         checkType(l, 2, out a1);
         self.HandleControllerChanged(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#2
0
 static int HandleControllerChanged(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         FairyGUI.GImage     obj  = (FairyGUI.GImage)ToLua.CheckObject(L, 1, typeof(FairyGUI.GImage));
         FairyGUI.Controller arg0 = (FairyGUI.Controller)ToLua.CheckObject(L, 2, typeof(FairyGUI.Controller));
         obj.HandleControllerChanged(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }