添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
强健的碗  ·  Unity - Scripting ...·  3 周前    · 
完美的镜子  ·  Canvas Group not ...·  3 周前    · 
俊逸的热带鱼  ·  Unity - Scripting ...·  1 周前    · 
有情有义的蜡烛  ·  elementUI tree ...·  1 月前    · 
豪情万千的单车  ·  Day 29 - Next.js 13 ...·  10 月前    · 
逆袭的登山鞋  ·  jQuery ...·  1 年前    · 
I just wanted to share the .gitignore that I’ve been using when implementing FMOD in Unity.

FMOD Gitignore Lines

Add these lines to your git-/hg-/collab-ignore file:

### FMOD Unity Integration ###
# Never ignore DLLs in the FMOD subfolder, so make sure that the FMOD-folder is in the correct path.
!/[Aa]ssets/Plugins/FMOD/**/*.dll
# 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-file since it is updated locally either way
/[Aa]ssets/**/FMODStudioCache.asset
/[Aa]ssets/**/FMODStudioCache.asset.meta
/[Aa]ssets/Plugins/FMOD/Cache.meta
/[Aa]ssets/Plugins/FMOD/Cache/Editor.meta
# Log-files
fmod.log
fmod_editor.log
# FMOD 1.10.x (Legacy)
/Assets/FMODAssets/*
/Assets/FMODStudioCache.meta

Here’s an explanation as to why I’m explicitly telling Git to NOT ignore any .dll-files in the Assets/Plugins/FMOD/-folders: