-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
59 lines (50 loc) · 1018 Bytes
/
.gitignore
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
55
56
57
58
59
# Ignore everything
/*
!assets
!gui
!materials
!pointcloud
!HDRI
!Lightning
!camera_animation
gui/*
materials/*
pointcloud/*
HDRI/*
Lightning/*
camera_animation/*
!gui/*.py
!materials/*.py
!pointcloud/*.py
!Lightning/*.py
!HDRI/*.py
!camera_animation/*.py
!*.gitignore
!*.py
!*.md
!requirements.txt
!main-windows.spec
!main-linux.spec
# Ignore everything in the assets folder, except for the necessary ones
assets/*
!assets/gui
!assets/HDRIs
!assets/textures/
!assets/models/
!assets/default_settings.yml
# Only allow logo and no preview image, excluding the generated "preview.png"
assets/gui/*
!assets/gui/icon.ico
!assets/gui/empty_bg.png
!assets/gui/preview_unavailable.png
# Only allow .hdr files in the HDRI folder
assets/HDRIs/*
!assets/HDRIs/*.hdr
# Only allow currently used images in the textures folder (should always be png)
assets/textures/*
!assets/textures/bricks.png
!assets/textures/iron.png
!assets/textures/wood.png
# Only allow .objs for model presets
assets/models/*
!assets/models/*.obj