setColor() public méthode

public setColor ( Color color ) : LTRect,
color Color
Résultat LTRect,
Exemple #1
0
 static public int setColor(IntPtr l)
 {
     try {
         LTRect            self = (LTRect)checkSelf(l);
         UnityEngine.Color a1;
         checkType(l, 2, out a1);
         var ret = self.setColor(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         LuaDLL.luaL_error(l, e.ToString());
         return(0);
     }
 }
Exemple #2
0
 static public int setColor(IntPtr l)
 {
     try {
         LTRect            self = (LTRect)checkSelf(l);
         UnityEngine.Color a1;
         checkType(l, 2, out a1);
         var ret = self.setColor(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }