We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 306f0f7 commit 522e8d5Copy full SHA for 522e8d5
arToolkit-Unity-Project.bat
@@ -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