mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 11:55:28 -04:00
86c67281d1
Added basic support for CursorOnObject condition. git-svn-id: svn://localhost@1021 8062f311-0dae-4547-b526-b8ab9ac864a5
10 lines
385 B
Batchfile
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 |