intProp() публичный Метод

generic integer tween
public intProp ( string propertyName, int endValue, bool isRelative = false ) : GoTweenConfig,
propertyName string
endValue int
isRelative bool
Результат GoTweenConfig,
Пример #1
0
 static public int intProp(IntPtr l)
 {
     try {
         GoTweenConfig self = (GoTweenConfig)checkSelf(l);
         System.String a1;
         checkType(l, 2, out a1);
         System.Int32 a2;
         checkType(l, 3, out a2);
         System.Boolean a3;
         checkType(l, 4, out a3);
         var ret = self.intProp(a1, a2, a3);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }