Files
GDevelop/GDJS/scripts/CopyRuntimeToGD.bat
T
Florian 86c67281d1 Added support for scenes changed ( All scenes are now exported during game preview ) and game quit.
Added basic support for CursorOnObject condition.

git-svn-id: svn://localhost@1021 8062f311-0dae-4547-b526-b8ab9ac864a5
2013-06-02 15:45:07 +00:00

10 lines
385 B
Batchfile

::This script copies the runtimes files ( i.e: the javascript files located into the Runtime
::folder ) to the Game Develop folder ( See below )
@echo off
set destDir="..\..\IDE\bin\dev\JsPlatform"
xcopy ..\Runtime\* %destDir%\Runtime\* /S /E /D /Y
set destDir="C:\Users\Florian\AppData\Local\Temp\GDTemporaries\JSPreview"
xcopy ..\Runtime\*.js %destDir%\*.js /S /E /D /Y