Skip to content

Instantly share code, notes, and snippets.

@hsienwei
Forked from anonymous/unity.sublime-project
Created June 26, 2014 18:58
Show Gist options
  • Save hsienwei/ad4564e649a60996d9b0 to your computer and use it in GitHub Desktop.
Save hsienwei/ad4564e649a60996d9b0 to your computer and use it in GitHub Desktop.
Sublime project file (Mac with Unity 4.x)
{
"folders":
[
{
"path": "your_project_path",
"file_exclude_patterns":
[
"*.dll",
"*.meta"
]
}
],
"settings": {
// Uncomment for OS X/Linux - Add the correct path to your Mono command if "mono" does not launch Mono in the Terminal.
//"completesharp_mono_path": "/Applications/Unity/MonoDevelop.app/Contents/MacOS/bin/monodevelop", 3.5.x
"completesharp_mono_path":"/Applications/Unity/MonoDevelop.localized/MonoDevelop.app/Contents/Frameworks/Mono.framework/Versions/Current/bin/mono",
"completesharp_assemblies": [
"/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll",
"/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll",
"/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/UnityScript.dll",
"/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Core.dll",
"/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.dll",
"/Applications/Unity/Unity.app/Contents/Frameworks/Managed/nunit.framework.dll",
"/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/mscorlib.dll",
"${project_path:Library}/ScriptAssemblies/Assembly-CSharp.dll",
"${project_path:Library}/ScriptAssemblies/Assembly-CSharp-Editor.dll",
"${project_path:Library}/ScriptAssemblies/Assembly-UnityScript-Editor.dll",
"${project_path:Library}/ScriptAssemblies/Assembly-CSharp-firstpass.dll"
],
"completioncommon_inhibit_sublime_completions": true,
"completioncommon_shorten_names": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment