1
|
|
2
|
# Created by https://www.toptal.com/developers/gitignore/api/unity
|
3
|
# Edit at https://www.toptal.com/developers/gitignore?templates=unity
|
4
|
|
5
|
### Unity ###
|
6
|
# This .gitignore file should be placed at the root of your Unity project directory
|
7
|
#
|
8
|
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
|
9
|
/[Ll]ibrary/
|
10
|
/[Tt]emp/
|
11
|
/[Oo]bj/
|
12
|
/[Bb]uild/
|
13
|
/[Bb]uilds/
|
14
|
/[Ll]ogs/
|
15
|
/[Uu]ser[Ss]ettings/
|
16
|
|
17
|
# MemoryCaptures can get excessive in size.
|
18
|
# They also could contain extremely sensitive data
|
19
|
/[Mm]emoryCaptures/
|
20
|
|
21
|
# Asset meta data should only be ignored when the corresponding asset is also ignored
|
22
|
!/[Aa]ssets/**/*.meta
|
23
|
|
24
|
# Uncomment this line if you wish to ignore the asset store tools plugin
|
25
|
# /[Aa]ssets/AssetStoreTools*
|
26
|
|
27
|
# Autogenerated Jetbrains Rider plugin
|
28
|
/[Aa]ssets/Plugins/Editor/JetBrains*
|
29
|
|
30
|
# Visual Studio cache directory
|
31
|
.vs/
|
32
|
|
33
|
# Gradle cache directory
|
34
|
.gradle/
|
35
|
|
36
|
# Autogenerated VS/MD/Consulo solution and project files
|
37
|
ExportedObj/
|
38
|
.consulo/
|
39
|
*.csproj
|
40
|
*.unityproj
|
41
|
*.sln
|
42
|
*.suo
|
43
|
*.tmp
|
44
|
*.user
|
45
|
*.userprefs
|
46
|
*.pidb
|
47
|
*.booproj
|
48
|
*.svd
|
49
|
*.pdb
|
50
|
*.mdb
|
51
|
*.opendb
|
52
|
*.VC.db
|
53
|
|
54
|
# Unity3D generated meta files
|
55
|
*.pidb.meta
|
56
|
*.pdb.meta
|
57
|
*.mdb.meta
|
58
|
|
59
|
# Unity3D generated file on crash reports
|
60
|
sysinfo.txt
|
61
|
|
62
|
# Builds
|
63
|
*.apk
|
64
|
*.unitypackage
|
65
|
|
66
|
# Crashlytics generated file
|
67
|
crashlytics-build.properties
|
68
|
|
69
|
# Autogenerated files
|
70
|
InitTestScene*.unity.meta
|
71
|
InitTestScene*.unity
|
72
|
|
73
|
|
74
|
# End of https://www.toptal.com/developers/gitignore/api/unity
|