├── .gitignore ├── Assets ├── UnityCompileInBackground.meta └── UnityCompileInBackground │ ├── Editor.meta │ └── Editor │ ├── UnityCompileInBackground-Watcher.exe │ ├── UnityCompileInBackground-Watcher.exe.meta │ ├── UnityCompileInBackground.cs │ └── UnityCompileInBackground.cs.meta ├── LICENSE ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset └── VFXManager.asset ├── README.md └── UnityCompileInBackground-Watcher ├── .gitignore └── UnityCompileInBackground-Watcher ├── App.config ├── Program.cs └── Properties └── AssemblyInfo.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/UnityCompileInBackground.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/Assets/UnityCompileInBackground.meta -------------------------------------------------------------------------------- /Assets/UnityCompileInBackground/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/Assets/UnityCompileInBackground/Editor.meta -------------------------------------------------------------------------------- /Assets/UnityCompileInBackground/Editor/UnityCompileInBackground-Watcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/Assets/UnityCompileInBackground/Editor/UnityCompileInBackground-Watcher.exe -------------------------------------------------------------------------------- /Assets/UnityCompileInBackground/Editor/UnityCompileInBackground-Watcher.exe.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/Assets/UnityCompileInBackground/Editor/UnityCompileInBackground-Watcher.exe.meta -------------------------------------------------------------------------------- /Assets/UnityCompileInBackground/Editor/UnityCompileInBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/Assets/UnityCompileInBackground/Editor/UnityCompileInBackground.cs -------------------------------------------------------------------------------- /Assets/UnityCompileInBackground/Editor/UnityCompileInBackground.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/Assets/UnityCompileInBackground/Editor/UnityCompileInBackground.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0f2 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/README.md -------------------------------------------------------------------------------- /UnityCompileInBackground-Watcher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/UnityCompileInBackground-Watcher/.gitignore -------------------------------------------------------------------------------- /UnityCompileInBackground-Watcher/UnityCompileInBackground-Watcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/UnityCompileInBackground-Watcher/UnityCompileInBackground-Watcher/App.config -------------------------------------------------------------------------------- /UnityCompileInBackground-Watcher/UnityCompileInBackground-Watcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/UnityCompileInBackground-Watcher/UnityCompileInBackground-Watcher/Program.cs -------------------------------------------------------------------------------- /UnityCompileInBackground-Watcher/UnityCompileInBackground-Watcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baba-s/unity-compile-in-background/HEAD/UnityCompileInBackground-Watcher/UnityCompileInBackground-Watcher/Properties/AssemblyInfo.cs --------------------------------------------------------------------------------