예제 #1
0
 static public int reload(IntPtr l)
 {
     try {
         Lui.LLabelAtlas self = (Lui.LLabelAtlas)checkSelf(l);
         self.reload();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #2
0
 static public int get_atlas(IntPtr l)
 {
     try {
         Lui.LLabelAtlas self = (Lui.LLabelAtlas)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.atlas);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #3
0
 static public int set_atlas(IntPtr l)
 {
     try {
         Lui.LLabelAtlas self = (Lui.LLabelAtlas)checkSelf(l);
         System.String   v;
         checkType(l, 2, out v);
         self.atlas = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }