コード例 #1
0
ファイル: Lua_XTween.cs プロジェクト: olivierh59500/DEMO
 static public int GotoWaypoint(IntPtr l)
 {
     try {
         XTween       self = (XTween)checkSelf(l);
         System.Int32 a1;
         checkType(l, 2, out a1);
         System.Boolean a2;
         checkType(l, 3, out a2);
         self.GotoWaypoint(a1, a2);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }