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