ParentHasChanged() public method

Find the parent panel, if we have one.
public ParentHasChanged ( ) : void
return void
Ejemplo n.º 1
0
 static public int ParentHasChanged(IntPtr l)
 {
     try {
         UIPanel self = (UIPanel)checkSelf(l);
         self.ParentHasChanged();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Ejemplo n.º 2
0
 static int ParentHasChanged(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         UIPanel obj = (UIPanel)ToLua.CheckObject <UIPanel>(L, 1);
         obj.ParentHasChanged();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }