-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
114 lines (97 loc) · 2.29 KB
/
.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# .gitignore for Unity Engine projects with embedded Wwise and FMOD projects
# This is a work in progress, please report any issues to Quin Henshaw
# Unity
/Library/
/Temp/
/Obj/
/Build/
/Builds/
/Test
/Release/
/AutoBuildLogs/
/Logs/
/MemoryCaptures/
/UserSettings/
/hooks/
/lfs/
/Recordings/
/Screenshots/
*sysinfo.txt
# Unity Plugin settings
ProjectSettings/Packages/com.unity.probuilder/Settings.json
ProjectSettings/Packages/com.unity.progrids/Settings.json
ProjectSettings/Packages/com.unity.polybrush/Settings.json
Assets/Polybrush Data/*
Assets/Polybrush Data.meta
Assets/Plugins/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateMenuItems.cs
Assets/Plugins/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateMenuItems.cs.meta
# Odin Inspector Plugin
Assets/Plugins/Sirenix/Assemblies/AOT/*
Assets/Plugins/Sirenix/Demos/*
!Assets/Plugins/Sirenix/Demos/*.unitypackage
# Wwise Plugin
Assets/Wwise/Editor/ProjectData/
Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/
Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/
# Wwise Project
Wwise/IncrementalSoundBankData.xml
Wwise/.cache/
Wwise/.backup/
Wwise/*.akd
Wwise/*.akpk
Wwise/*.prof
Wwise/*.validationcache
Wwise/*.wsettings
#FMOD Plugin
# Never ignore DLLs in the FMOD subfolder.
!/[Aa]ssets/Plugins/FMOD/**/lib/*
# Don't ignore images and gizmos used by FMOD in the Unity Editor.
!/[Aa]ssets/Gizmos/FMOD/*
!/[Aa]ssets/Editor Default Resources/FMOD/*
# Ignore the Cache folder since it is updated locally.
/[Aa]ssets/Plugins/FMOD/Cache/*
# Ignore bank files in the StreamingAssets folder.
/[Aa]ssets/StreamingAssets/**/*.bank
/[Aa]ssets/StreamingAssets/**/*.bank.meta
# If the source bank files are kept outside of the StreamingAssets folder then these can be ignored.
# Log files can be ignored.
fmod_editor.log
# FMOD Project
FMOD/.user/
FMOD/.unsaved/
FMOD/.cache/
FMOD/.restore/
FMOD/user/
FMOD/unsaved/
FMOD/restore/
FMOD/fmod.log
FMOD/fmod_editor.log
FMOD/Metadata/ProfilerSession
# Code Editors
.vs/
.gradle/
.vscode/
.idea/
# Autogenerated solution and project files
*.csproj
*.sdf
*.sln
*.suo
*.tmp
*.user
*.userprefs
*.booproj
*.svd
*.opensdf
*.opendb
*.VC.db
*.xcodeproj
*.xcworkspace
*.vsconfig
# Windows
Thumbs.db
Thumbs.db.meta
# Stuff that never should be...
.play
# Mac
*.DS_Store