Created
February 4, 2024 15:30
-
-
Save Borod4r/fcfbfe72681d64006fdb416638ff083b to your computer and use it in GitHub Desktop.
.gitignore for Unity projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# =================================================== | |
# Unity folders | |
# =================================================== | |
/[Bb]uild/ | |
/[Bb]uilds/ | |
/[Ll]ibrary/ | |
/[Ll]ogs/ | |
/[Mm]emoryCaptures/ | |
/[Oo]bj/ | |
/[Rr]ecordings/ | |
/[Tt]emp/ | |
/[Uu]ser[Ss]ettings/ | |
/[Aa]ssets/AssetStoreTools* | |
# =================================================== | |
# Unity3D generated meta files | |
# =================================================== | |
*.pidb.meta | |
*.pdb.meta | |
*.mdb.meta | |
# =================================================== | |
# Unity3D Generated File On Crash Reports | |
# =================================================== | |
sysinfo.txt | |
# =================================================== | |
# Rider | |
# =================================================== | |
/[Aa]ssets/Plugins/Editor/JetBrains* | |
/.idea/ | |
# =================================================== | |
# Visual Studio cache directory | |
# =================================================== | |
.vs/ | |
# =================================================== | |
# Gradle | |
# =================================================== | |
.gradle/ | |
# ======================================================= | |
# Autogenerated VS/MD/Consulo solution and project files | |
# ======================================================= | |
ExportedObj/ | |
.consulo/ | |
*.csproj | |
*.unityproj | |
*.sln | |
*.suo | |
*.tmp | |
*.user | |
*.userprefs | |
*.pidb | |
*.booproj | |
*.svd | |
*.pdb | |
*.mdb | |
*.opendb | |
*.VC.db | |
# ======================================================= | |
# Crashlytics generated file | |
# ======================================================= | |
crashlytics-build.properties | |
# ======================================================= | |
# Packed Addressables | |
# ======================================================= | |
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* | |
# ======================================================= | |
# Temporary auto-generated Android Assets | |
# ======================================================= | |
/[Aa]ssets/[Ss]treamingAssets/aa.meta | |
/[Aa]ssets/[Ss]treamingAssets/aa/* | |
# ======================================================= | |
# Local-only assets | |
# ======================================================= | |
/[Aa]ssets/[Ll]ocal/ | |
/[Aa]ssets/[Ll]ocal.meta |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment