Skip to content

Commit 522e8d5

Browse files
Add files via upload
1 parent 306f0f7 commit 522e8d5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

arToolkit-Unity-Project.bat

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
@echo off
2+
echo Cloning the ARToolkit-Unity-Template repository...
3+
4+
rem Clone the repository
5+
git clone https://github.com/CursedPrograms/ARToolkit-Unity-Template.git temp_repo
6+
7+
echo Moving contents of Unity directory to current folder...
8+
rem Move the contents of the Unity directory to the current folder
9+
xcopy "temp_repo/src/Unity\*" "." /E /I /Y
10+
11+
echo Cleaning up temporary files...
12+
rem Remove the cloned repository
13+
rmdir /S /Q temp_repo
14+
15+
echo Download complete. The contents of the Unity directory are now in the current folder.
16+
pause

0 commit comments

Comments
 (0)