This repository was archived by the owner on Mar 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcreate-files.py
56 lines (41 loc) · 1.71 KB
/
create-files.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
import string
from shutil import copyfile
folders = ["Animations", "Images", "Prefabs", "Scenes", "Scripts"]
def get_type():
print("1 - Screen Space")
print("2 - World Space")
example_type = int(input())
if example_type == 1:
return "ScreenSpace"
elif example_type == 2:
return "WorldSpace"
else:
get_type()
def get_project_name():
print("Enter a new example name:")
example_name = input()
if os.path.exists(os.path.join(os.path.curdir, 'Assets', 'ScreenSpace', example_name))\
or os.path.exists(os.path.join(os.path.curdir, 'Assets', 'WorldSpace', example_name)):
print("Example \"" + example_name + "\" already exists.")
get_project_name()
else:
# We have to follow guidelines :)
example_name = example_name.replace(' ', '')
return example_name
if __name__ == "__main__":
proj_type = get_type()
proj_name = get_project_name()
scene_name = proj_name + ".unity"
# Create the new folders
for folder in folders:
os.makedirs(os.path.join(os.path.curdir, 'Assets', proj_type, proj_name, folder))
# Copy scene from skeleton
copyfile(os.path.join(os.path.curdir, 'Skeleton', 'Scene.unity'),
os.path.join(os.path.curdir, 'Assets', proj_type, proj_name, 'Scenes', scene_name))
# Copy readme from skeleton
copyfile(os.path.join(os.path.curdir, 'Skeleton', 'README.md'),
os.path.join(os.path.curdir, 'Assets', proj_type, proj_name, 'README.md'))
# Copy image from skeleton
copyfile(os.path.join(os.path.curdir, 'Skeleton', 'readme-image.jpg'),
os.path.join(os.path.curdir, 'Assets', proj_type, proj_name, 'readme-image.jpg'))