Esempio n. 1
0
 static public int DOTogglePause(IntPtr l)
 {
     try {
         DG.Tweening.DOTweenPath self = (DG.Tweening.DOTweenPath)checkSelf(l);
         self.DOTogglePause();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Esempio n. 2
0
 static int DOTogglePause(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         DG.Tweening.DOTweenPath obj = (DG.Tweening.DOTweenPath)ToLua.CheckObject(L, 1, typeof(DG.Tweening.DOTweenPath));
         obj.DOTogglePause();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }