示例#1
0
 static public int DORestart(IntPtr l)
 {
     try {
         DG.Tweening.DOTweenPath self = (DG.Tweening.DOTweenPath)checkSelf(l);
         System.Boolean          a1;
         checkType(l, 2, out a1);
         self.DORestart(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#2
0
 static int DORestart(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         DG.Tweening.DOTweenPath obj = (DG.Tweening.DOTweenPath)ToLua.CheckObject(L, 1, typeof(DG.Tweening.DOTweenPath));
         bool arg0 = LuaDLL.luaL_checkboolean(L, 2);
         obj.DORestart(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }