├── .gitignore ├── Assets ├── DebugSystem.meta └── DebugSystem │ ├── Debugger.cs │ ├── Debugger.cs.meta │ ├── Debugger.prefab │ ├── Debugger.prefab.meta │ ├── DebuggerSkin.guiskin │ ├── DebuggerSkin.guiskin.meta │ ├── DebuggerTreeView.cs │ ├── DebuggerTreeView.cs.meta │ ├── Log.cs │ ├── Log.cs.meta │ ├── LogTest.cs │ └── LogTest.cs.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityAdsSettings.asset └── UnityConnectSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/DebugSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem.meta -------------------------------------------------------------------------------- /Assets/DebugSystem/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/Debugger.cs -------------------------------------------------------------------------------- /Assets/DebugSystem/Debugger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/Debugger.cs.meta -------------------------------------------------------------------------------- /Assets/DebugSystem/Debugger.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/Debugger.prefab -------------------------------------------------------------------------------- /Assets/DebugSystem/Debugger.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/Debugger.prefab.meta -------------------------------------------------------------------------------- /Assets/DebugSystem/DebuggerSkin.guiskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/DebuggerSkin.guiskin -------------------------------------------------------------------------------- /Assets/DebugSystem/DebuggerSkin.guiskin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/DebuggerSkin.guiskin.meta -------------------------------------------------------------------------------- /Assets/DebugSystem/DebuggerTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/DebuggerTreeView.cs -------------------------------------------------------------------------------- /Assets/DebugSystem/DebuggerTreeView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/DebuggerTreeView.cs.meta -------------------------------------------------------------------------------- /Assets/DebugSystem/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/Log.cs -------------------------------------------------------------------------------- /Assets/DebugSystem/Log.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/Log.cs.meta -------------------------------------------------------------------------------- /Assets/DebugSystem/LogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/LogTest.cs -------------------------------------------------------------------------------- /Assets/DebugSystem/LogTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/Assets/DebugSystem/LogTest.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinifi/Unity-Runtime-Debugger/HEAD/README.md --------------------------------------------------------------------------------