├── .gitignore ├── .idea └── .idea.DebugCommandExecutor │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ ├── indexLayout.xml │ ├── projectSettingsUpdater.xml │ └── vcs.xml ├── Assets ├── DebugCommandExecutor.meta ├── DebugCommandExecutor │ ├── Editor.meta │ ├── Editor │ │ ├── DebugCommandExecutor.Editor.asmdef │ │ ├── DebugCommandExecutor.Editor.asmdef.meta │ │ ├── DebugCommandWindow.cs │ │ └── DebugCommandWindow.cs.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── DebugCommand.cs │ │ ├── DebugCommand.cs.meta │ │ ├── DebugCommandAttribute.cs │ │ ├── DebugCommandAttribute.cs.meta │ │ ├── DebugCommandExecutor.asmdef │ │ ├── DebugCommandExecutor.asmdef.meta │ │ ├── RemoteExecutor.cs │ │ ├── RemoteExecutor.cs.meta │ │ ├── TypeExtensions.cs │ │ └── TypeExtensions.cs.meta │ ├── package.json │ └── package.json.meta ├── Development.meta └── Development │ ├── SampleScene.cs │ ├── SampleScene.cs.meta │ ├── SampleScene.unity │ ├── SampleScene.unity.meta │ ├── TestCommands.cs │ └── TestCommands.cs.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── MultiplayerManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.DebugCommandExecutor/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/.idea/.idea.DebugCommandExecutor/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.DebugCommandExecutor/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/.idea/.idea.DebugCommandExecutor/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.DebugCommandExecutor/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/.idea/.idea.DebugCommandExecutor/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.DebugCommandExecutor/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/.idea/.idea.DebugCommandExecutor/.idea/projectSettingsUpdater.xml -------------------------------------------------------------------------------- /.idea/.idea.DebugCommandExecutor/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/.idea/.idea.DebugCommandExecutor/.idea/vcs.xml -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Editor.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Editor/DebugCommandExecutor.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Editor/DebugCommandExecutor.Editor.asmdef -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Editor/DebugCommandExecutor.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Editor/DebugCommandExecutor.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Editor/DebugCommandWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Editor/DebugCommandWindow.cs -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Editor/DebugCommandWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Editor/DebugCommandWindow.cs.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/LICENSE.md -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/LICENSE.md.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Runtime.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime/DebugCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Runtime/DebugCommand.cs -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime/DebugCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Runtime/DebugCommand.cs.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime/DebugCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Runtime/DebugCommandAttribute.cs -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime/DebugCommandAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Runtime/DebugCommandAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime/DebugCommandExecutor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DebugCommandExecutor" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime/DebugCommandExecutor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Runtime/DebugCommandExecutor.asmdef.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime/RemoteExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Runtime/RemoteExecutor.cs -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime/RemoteExecutor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Runtime/RemoteExecutor.cs.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Runtime/TypeExtensions.cs -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/Runtime/TypeExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/Runtime/TypeExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/package.json -------------------------------------------------------------------------------- /Assets/DebugCommandExecutor/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/DebugCommandExecutor/package.json.meta -------------------------------------------------------------------------------- /Assets/Development.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/Development.meta -------------------------------------------------------------------------------- /Assets/Development/SampleScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/Development/SampleScene.cs -------------------------------------------------------------------------------- /Assets/Development/SampleScene.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/Development/SampleScene.cs.meta -------------------------------------------------------------------------------- /Assets/Development/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/Development/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Development/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/Development/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/Development/TestCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/Development/TestCommands.cs -------------------------------------------------------------------------------- /Assets/Development/TestCommands.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Assets/Development/TestCommands.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/MultiplayerManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/MultiplayerManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/DebugCommandExecutor/HEAD/README.md --------------------------------------------------------------------------------