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

sets the onInit handler for the Tween
public onInit ( Action onInit ) : GoTweenConfig,
onInit Action
Результат GoTweenConfig,
Пример #1
0
 static public int onInit(IntPtr l)
 {
     try {
         GoTweenConfig self = (GoTweenConfig)checkSelf(l);
         System.Action <AbstractGoTween> a1;
         LuaDelegation.checkDelegate(l, 2, out a1);
         var ret = self.onInit(a1);
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }