@akiojin/unity-mcp-server 2.16.0 → 2.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +142 -99
- package/package.json +4 -3
- package/src/core/config.js +5 -14
- package/src/core/indexWatcher.js +2 -3
- package/src/core/projectInfo.js +27 -20
- package/src/handlers/analysis/AnalyzeSceneContentsToolHandler.js +1 -1
- package/src/handlers/analysis/FindByComponentToolHandler.js +2 -2
- package/src/handlers/analysis/GetAnimatorStateToolHandler.js +1 -1
- package/src/handlers/analysis/GetComponentValuesToolHandler.js +2 -2
- package/src/handlers/analysis/GetGameObjectDetailsToolHandler.js +1 -1
- package/src/handlers/analysis/GetInputActionsStateToolHandler.js +1 -1
- package/src/handlers/analysis/GetObjectReferencesToolHandler.js +2 -2
- package/src/handlers/asset/{AssetDatabaseToolHandler.js → AssetDatabaseManageToolHandler.js} +2 -2
- package/src/handlers/asset/{AssetDependencyToolHandler.js → AssetDependencyAnalyzeToolHandler.js} +2 -2
- package/src/handlers/asset/{AssetImportSettingsToolHandler.js → AssetImportSettingsManageToolHandler.js} +2 -2
- package/src/handlers/asset/{CreateMaterialToolHandler.js → AssetMaterialCreateToolHandler.js} +2 -2
- package/src/handlers/asset/{ModifyMaterialToolHandler.js → AssetMaterialModifyToolHandler.js} +2 -2
- package/src/handlers/asset/{CreatePrefabToolHandler.js → AssetPrefabCreateToolHandler.js} +2 -2
- package/src/handlers/asset/{ExitPrefabModeToolHandler.js → AssetPrefabExitModeToolHandler.js} +2 -2
- package/src/handlers/asset/{InstantiatePrefabToolHandler.js → AssetPrefabInstantiateToolHandler.js} +2 -2
- package/src/handlers/asset/{ModifyPrefabToolHandler.js → AssetPrefabModifyToolHandler.js} +2 -2
- package/src/handlers/asset/{OpenPrefabToolHandler.js → AssetPrefabOpenToolHandler.js} +2 -2
- package/src/handlers/asset/{SavePrefabToolHandler.js → AssetPrefabSaveToolHandler.js} +2 -2
- package/src/handlers/compilation/{GetCompilationStateToolHandler.js → CompilationGetStateToolHandler.js} +2 -2
- package/src/handlers/component/{AddComponentToolHandler.js → ComponentAddToolHandler.js} +2 -2
- package/src/handlers/component/{GetComponentTypesToolHandler.js → ComponentGetTypesToolHandler.js} +2 -2
- package/src/handlers/component/{ListComponentsToolHandler.js → ComponentListToolHandler.js} +2 -2
- package/src/handlers/component/{ModifyComponentToolHandler.js → ComponentModifyToolHandler.js} +2 -2
- package/src/handlers/component/{RemoveComponentToolHandler.js → ComponentRemoveToolHandler.js} +2 -2
- package/src/handlers/console/{ClearConsoleToolHandler.js → ConsoleClearToolHandler.js} +2 -2
- package/src/handlers/console/{ReadConsoleToolHandler.js → ConsoleReadToolHandler.js} +2 -2
- package/src/handlers/editor/{LayerManagementToolHandler.js → EditorLayersManageToolHandler.js} +2 -2
- package/src/handlers/editor/{SelectionToolHandler.js → EditorSelectionManageToolHandler.js} +2 -2
- package/src/handlers/editor/{TagManagementToolHandler.js → EditorTagsManageToolHandler.js} +2 -2
- package/src/handlers/editor/{ToolManagementToolHandler.js → EditorToolsManageToolHandler.js} +2 -2
- package/src/handlers/editor/{WindowManagementToolHandler.js → EditorWindowsManageToolHandler.js} +2 -2
- package/src/handlers/gameobject/{CreateGameObjectToolHandler.js → GameObjectCreateToolHandler.js} +3 -3
- package/src/handlers/gameobject/{DeleteGameObjectToolHandler.js → GameObjectDeleteToolHandler.js} +3 -3
- package/src/handlers/gameobject/{FindGameObjectToolHandler.js → GameObjectFindToolHandler.js} +3 -3
- package/src/handlers/gameobject/{GetHierarchyToolHandler.js → GameObjectGetHierarchyToolHandler.js} +3 -3
- package/src/handlers/gameobject/{ModifyGameObjectToolHandler.js → GameObjectModifyToolHandler.js} +3 -3
- package/src/handlers/index.js +225 -218
- package/src/handlers/input/{AddInputActionToolHandler.js → InputActionAddToolHandler.js} +2 -2
- package/src/handlers/input/{CreateActionMapToolHandler.js → InputActionMapCreateToolHandler.js} +2 -2
- package/src/handlers/input/{RemoveActionMapToolHandler.js → InputActionMapRemoveToolHandler.js} +2 -2
- package/src/handlers/input/{RemoveInputActionToolHandler.js → InputActionRemoveToolHandler.js} +2 -2
- package/src/handlers/input/{AddInputBindingToolHandler.js → InputBindingAddToolHandler.js} +2 -2
- package/src/handlers/input/{CreateCompositeBindingToolHandler.js → InputBindingCompositeCreateToolHandler.js} +2 -2
- package/src/handlers/input/{RemoveAllBindingsToolHandler.js → InputBindingRemoveAllToolHandler.js} +2 -2
- package/src/handlers/input/{RemoveInputBindingToolHandler.js → InputBindingRemoveToolHandler.js} +2 -2
- package/src/handlers/input/{ManageControlSchemesToolHandler.js → InputControlSchemesManageToolHandler.js} +2 -2
- package/src/handlers/input/{GamepadSimulationHandler.js → InputGamepadSimulateToolHandler.js} +3 -3
- package/src/handlers/input/{KeyboardSimulationHandler.js → InputKeyboardSimulateToolHandler.js} +3 -3
- package/src/handlers/input/{MouseSimulationHandler.js → InputMouseSimulateToolHandler.js} +3 -3
- package/src/handlers/input/{InputSystemHandler.js → InputSystemControlToolHandler.js} +4 -4
- package/src/handlers/input/{TouchSimulationHandler.js → InputTouchSimulateToolHandler.js} +3 -3
- package/src/handlers/menu/{ExecuteMenuItemToolHandler.js → MenuItemExecuteToolHandler.js} +2 -2
- package/src/handlers/package/PackageManagerToolHandler.js +1 -1
- package/src/handlers/package/RegistryConfigToolHandler.js +1 -1
- package/src/handlers/playmode/{GetEditorStateToolHandler.js → PlaymodeGetStateToolHandler.js} +2 -2
- package/src/handlers/playmode/{PauseToolHandler.js → PlaymodePauseToolHandler.js} +3 -3
- package/src/handlers/playmode/{PlayToolHandler.js → PlaymodePlayToolHandler.js} +4 -4
- package/src/handlers/playmode/{StopToolHandler.js → PlaymodeStopToolHandler.js} +4 -4
- package/src/handlers/playmode/{WaitForEditorStateToolHandler.js → PlaymodeWaitForStateToolHandler.js} +3 -3
- package/src/handlers/scene/GetSceneInfoToolHandler.js +1 -1
- package/src/handlers/scene/{CreateSceneToolHandler.js → SceneCreateToolHandler.js} +2 -2
- package/src/handlers/scene/{ListScenesToolHandler.js → SceneListToolHandler.js} +2 -2
- package/src/handlers/scene/{LoadSceneToolHandler.js → SceneLoadToolHandler.js} +2 -2
- package/src/handlers/scene/{SaveSceneToolHandler.js → SceneSaveToolHandler.js} +2 -2
- package/src/handlers/screenshot/{AnalyzeScreenshotToolHandler.js → ScreenshotAnalyzeToolHandler.js} +2 -2
- package/src/handlers/screenshot/{CaptureScreenshotToolHandler.js → ScreenshotCaptureToolHandler.js} +2 -2
- package/src/handlers/script/{BuildCodeIndexToolHandler.js → CodeIndexBuildToolHandler.js} +4 -4
- package/src/handlers/script/CodeIndexUpdateToolHandler.js +234 -0
- package/src/handlers/script/{ScriptCreateClassFileToolHandler.js → ScriptCreateClassToolHandler.js} +2 -2
- package/src/handlers/script/ScriptEditSnippetToolHandler.js +272 -0
- package/src/handlers/script/ScriptIndexStatusToolHandler.js +2 -2
- package/src/handlers/settings/{GetProjectSettingsToolHandler.js → SettingsGetToolHandler.js} +2 -2
- package/src/handlers/settings/{UpdateProjectSettingsToolHandler.js → SettingsUpdateToolHandler.js} +2 -2
- package/src/handlers/system/{GetCommandStatsToolHandler.js → SystemGetCommandStatsToolHandler.js} +2 -3
- package/src/handlers/system/{PingToolHandler.js → SystemPingToolHandler.js} +3 -3
- package/src/handlers/system/{RefreshAssetsToolHandler.js → SystemRefreshAssetsToolHandler.js} +3 -3
- package/src/handlers/test/{GetTestStatusToolHandler.js → TestGetStatusToolHandler.js} +2 -2
- package/src/handlers/test/{RunTestsToolHandler.js → TestRunToolHandler.js} +2 -2
- package/src/handlers/ui/{ClickUIElementToolHandler.js → UIClickElementToolHandler.js} +2 -2
- package/src/handlers/ui/{FindUIElementsToolHandler.js → UIFindElementsToolHandler.js} +2 -2
- package/src/handlers/ui/{GetUIElementStateToolHandler.js → UIGetElementStateToolHandler.js} +2 -2
- package/src/handlers/ui/{SetUIElementValueToolHandler.js → UISetElementValueToolHandler.js} +2 -2
- package/src/handlers/ui/{SimulateUIInputToolHandler.js → UISimulateInputToolHandler.js} +2 -2
- package/src/handlers/video/{CaptureVideoForToolHandler.js → VideoCaptureForToolHandler.js} +8 -8
- package/src/handlers/video/{CaptureVideoStartToolHandler.js → VideoCaptureStartToolHandler.js} +2 -2
- package/src/handlers/video/{CaptureVideoStatusToolHandler.js → VideoCaptureStatusToolHandler.js} +2 -2
- package/src/handlers/video/{CaptureVideoStopToolHandler.js → VideoCaptureStopToolHandler.js} +3 -3
- package/src/lsp/CSharpLspUtils.js +68 -10
- package/src/lsp/LspRpcClient.js +14 -0
- package/src/tools/analysis/analyzeSceneContents.js +3 -3
- package/src/tools/analysis/findByComponent.js +3 -3
- package/src/tools/analysis/getAnimatorState.js +6 -6
- package/src/tools/analysis/getComponentValues.js +3 -3
- package/src/tools/analysis/getGameObjectDetails.js +3 -3
- package/src/tools/analysis/getInputActionsState.js +4 -4
- package/src/tools/analysis/getObjectReferences.js +3 -3
- package/src/tools/input/inputActionsEditor.js +18 -18
- package/src/tools/scene/createScene.js +3 -3
- package/src/tools/scene/getSceneInfo.js +3 -3
- package/src/tools/scene/listScenes.js +3 -3
- package/src/tools/scene/loadScene.js +3 -3
- package/src/tools/scene/saveScene.js +3 -3
- package/src/tools/system/ping.js +5 -5
- package/src/tools/video/recordFor.js +2 -2
package/src/handlers/index.js
CHANGED
|
@@ -6,22 +6,22 @@
|
|
|
6
6
|
export { BaseToolHandler } from './base/BaseToolHandler.js';
|
|
7
7
|
|
|
8
8
|
// System handlers
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
9
|
+
export { SystemPingToolHandler } from './system/SystemPingToolHandler.js';
|
|
10
|
+
export { SystemRefreshAssetsToolHandler } from './system/SystemRefreshAssetsToolHandler.js';
|
|
11
|
+
export { SystemGetCommandStatsToolHandler } from './system/SystemGetCommandStatsToolHandler.js';
|
|
12
12
|
|
|
13
13
|
// GameObject handlers
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
14
|
+
export { GameObjectCreateToolHandler } from './gameobject/GameObjectCreateToolHandler.js';
|
|
15
|
+
export { GameObjectFindToolHandler } from './gameobject/GameObjectFindToolHandler.js';
|
|
16
|
+
export { GameObjectModifyToolHandler } from './gameobject/GameObjectModifyToolHandler.js';
|
|
17
|
+
export { GameObjectDeleteToolHandler } from './gameobject/GameObjectDeleteToolHandler.js';
|
|
18
|
+
export { GameObjectGetHierarchyToolHandler } from './gameobject/GameObjectGetHierarchyToolHandler.js';
|
|
19
19
|
|
|
20
20
|
// Scene handlers
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
21
|
+
export { SceneCreateToolHandler } from './scene/SceneCreateToolHandler.js';
|
|
22
|
+
export { SceneLoadToolHandler } from './scene/SceneLoadToolHandler.js';
|
|
23
|
+
export { SceneSaveToolHandler } from './scene/SceneSaveToolHandler.js';
|
|
24
|
+
export { SceneListToolHandler } from './scene/SceneListToolHandler.js';
|
|
25
25
|
export { GetSceneInfoToolHandler } from './scene/GetSceneInfoToolHandler.js';
|
|
26
26
|
|
|
27
27
|
// Analysis handlers
|
|
@@ -34,89 +34,89 @@ export { GetAnimatorStateToolHandler, GetAnimatorRuntimeInfoToolHandler } from '
|
|
|
34
34
|
export { GetInputActionsStateToolHandler, AnalyzeInputActionsAssetToolHandler } from './analysis/GetInputActionsStateToolHandler.js';
|
|
35
35
|
|
|
36
36
|
// PlayMode handlers
|
|
37
|
-
export {
|
|
38
|
-
export {
|
|
39
|
-
export {
|
|
40
|
-
export {
|
|
41
|
-
export {
|
|
37
|
+
export { PlaymodePlayToolHandler } from './playmode/PlaymodePlayToolHandler.js';
|
|
38
|
+
export { PlaymodePauseToolHandler } from './playmode/PlaymodePauseToolHandler.js';
|
|
39
|
+
export { PlaymodeStopToolHandler } from './playmode/PlaymodeStopToolHandler.js';
|
|
40
|
+
export { PlaymodeGetStateToolHandler } from './playmode/PlaymodeGetStateToolHandler.js';
|
|
41
|
+
export { PlaymodeWaitForStateToolHandler } from './playmode/PlaymodeWaitForStateToolHandler.js';
|
|
42
42
|
|
|
43
43
|
// UI handlers
|
|
44
|
-
export {
|
|
45
|
-
export {
|
|
46
|
-
export {
|
|
47
|
-
export {
|
|
48
|
-
export {
|
|
44
|
+
export { UIFindElementsToolHandler } from './ui/UIFindElementsToolHandler.js';
|
|
45
|
+
export { UIClickElementToolHandler } from './ui/UIClickElementToolHandler.js';
|
|
46
|
+
export { UIGetElementStateToolHandler } from './ui/UIGetElementStateToolHandler.js';
|
|
47
|
+
export { UISetElementValueToolHandler } from './ui/UISetElementValueToolHandler.js';
|
|
48
|
+
export { UISimulateInputToolHandler } from './ui/UISimulateInputToolHandler.js';
|
|
49
49
|
|
|
50
50
|
// Input System handlers
|
|
51
|
-
export {
|
|
52
|
-
export {
|
|
53
|
-
export {
|
|
54
|
-
export {
|
|
55
|
-
export {
|
|
56
|
-
export {
|
|
57
|
-
export {
|
|
58
|
-
export {
|
|
59
|
-
export {
|
|
60
|
-
export {
|
|
61
|
-
export {
|
|
62
|
-
export {
|
|
63
|
-
export {
|
|
64
|
-
export {
|
|
51
|
+
export { InputSystemControlToolHandler } from './input/InputSystemControlToolHandler.js';
|
|
52
|
+
export { InputKeyboardSimulateToolHandler } from './input/InputKeyboardSimulateToolHandler.js';
|
|
53
|
+
export { InputMouseSimulateToolHandler } from './input/InputMouseSimulateToolHandler.js';
|
|
54
|
+
export { InputGamepadSimulateToolHandler } from './input/InputGamepadSimulateToolHandler.js';
|
|
55
|
+
export { InputTouchSimulateToolHandler } from './input/InputTouchSimulateToolHandler.js';
|
|
56
|
+
export { InputActionMapCreateToolHandler } from './input/InputActionMapCreateToolHandler.js';
|
|
57
|
+
export { InputActionMapRemoveToolHandler } from './input/InputActionMapRemoveToolHandler.js';
|
|
58
|
+
export { InputActionAddToolHandler } from './input/InputActionAddToolHandler.js';
|
|
59
|
+
export { InputActionRemoveToolHandler } from './input/InputActionRemoveToolHandler.js';
|
|
60
|
+
export { InputBindingAddToolHandler } from './input/InputBindingAddToolHandler.js';
|
|
61
|
+
export { InputBindingRemoveToolHandler } from './input/InputBindingRemoveToolHandler.js';
|
|
62
|
+
export { InputBindingRemoveAllToolHandler } from './input/InputBindingRemoveAllToolHandler.js';
|
|
63
|
+
export { InputBindingCompositeCreateToolHandler } from './input/InputBindingCompositeCreateToolHandler.js';
|
|
64
|
+
export { InputControlSchemesManageToolHandler } from './input/InputControlSchemesManageToolHandler.js';
|
|
65
65
|
|
|
66
66
|
// Asset handlers
|
|
67
|
-
export {
|
|
68
|
-
export {
|
|
69
|
-
export {
|
|
70
|
-
export {
|
|
71
|
-
export {
|
|
72
|
-
export {
|
|
73
|
-
export {
|
|
74
|
-
export {
|
|
75
|
-
export {
|
|
76
|
-
export {
|
|
77
|
-
export {
|
|
67
|
+
export { AssetPrefabCreateToolHandler } from './asset/AssetPrefabCreateToolHandler.js';
|
|
68
|
+
export { AssetPrefabModifyToolHandler } from './asset/AssetPrefabModifyToolHandler.js';
|
|
69
|
+
export { AssetPrefabInstantiateToolHandler } from './asset/AssetPrefabInstantiateToolHandler.js';
|
|
70
|
+
export { AssetMaterialCreateToolHandler } from './asset/AssetMaterialCreateToolHandler.js';
|
|
71
|
+
export { AssetMaterialModifyToolHandler } from './asset/AssetMaterialModifyToolHandler.js';
|
|
72
|
+
export { AssetPrefabOpenToolHandler } from './asset/AssetPrefabOpenToolHandler.js';
|
|
73
|
+
export { AssetPrefabExitModeToolHandler } from './asset/AssetPrefabExitModeToolHandler.js';
|
|
74
|
+
export { AssetPrefabSaveToolHandler } from './asset/AssetPrefabSaveToolHandler.js';
|
|
75
|
+
export { AssetImportSettingsManageToolHandler } from './asset/AssetImportSettingsManageToolHandler.js';
|
|
76
|
+
export { AssetDatabaseManageToolHandler } from './asset/AssetDatabaseManageToolHandler.js';
|
|
77
|
+
export { AssetDependencyAnalyzeToolHandler } from './asset/AssetDependencyAnalyzeToolHandler.js';
|
|
78
78
|
|
|
79
79
|
// Menu handlers
|
|
80
|
-
export {
|
|
80
|
+
export { MenuItemExecuteToolHandler } from './menu/MenuItemExecuteToolHandler.js';
|
|
81
81
|
|
|
82
82
|
// Console handlers
|
|
83
|
-
export {
|
|
84
|
-
export {
|
|
83
|
+
export { ConsoleClearToolHandler } from './console/ConsoleClearToolHandler.js';
|
|
84
|
+
export { ConsoleReadToolHandler } from './console/ConsoleReadToolHandler.js';
|
|
85
85
|
|
|
86
86
|
// Screenshot handlers
|
|
87
|
-
export {
|
|
88
|
-
export {
|
|
87
|
+
export { ScreenshotCaptureToolHandler } from './screenshot/ScreenshotCaptureToolHandler.js';
|
|
88
|
+
export { ScreenshotAnalyzeToolHandler } from './screenshot/ScreenshotAnalyzeToolHandler.js';
|
|
89
89
|
|
|
90
90
|
// Video handlers
|
|
91
|
-
export {
|
|
92
|
-
export {
|
|
93
|
-
export {
|
|
94
|
-
export {
|
|
91
|
+
export { VideoCaptureStartToolHandler } from './video/VideoCaptureStartToolHandler.js';
|
|
92
|
+
export { VideoCaptureStopToolHandler } from './video/VideoCaptureStopToolHandler.js';
|
|
93
|
+
export { VideoCaptureStatusToolHandler } from './video/VideoCaptureStatusToolHandler.js';
|
|
94
|
+
export { VideoCaptureForToolHandler } from './video/VideoCaptureForToolHandler.js';
|
|
95
95
|
|
|
96
96
|
// Component handlers
|
|
97
|
-
export {
|
|
98
|
-
export {
|
|
99
|
-
export {
|
|
100
|
-
export {
|
|
101
|
-
export {
|
|
97
|
+
export { ComponentAddToolHandler } from './component/ComponentAddToolHandler.js';
|
|
98
|
+
export { ComponentRemoveToolHandler } from './component/ComponentRemoveToolHandler.js';
|
|
99
|
+
export { ComponentModifyToolHandler } from './component/ComponentModifyToolHandler.js';
|
|
100
|
+
export { ComponentListToolHandler } from './component/ComponentListToolHandler.js';
|
|
101
|
+
export { ComponentGetTypesToolHandler } from './component/ComponentGetTypesToolHandler.js';
|
|
102
102
|
|
|
103
103
|
// Compilation handlers
|
|
104
|
-
export {
|
|
104
|
+
export { CompilationGetStateToolHandler } from './compilation/CompilationGetStateToolHandler.js';
|
|
105
105
|
|
|
106
106
|
// Test handlers
|
|
107
|
-
export {
|
|
108
|
-
export {
|
|
107
|
+
export { TestRunToolHandler } from './test/TestRunToolHandler.js';
|
|
108
|
+
export { TestGetStatusToolHandler } from './test/TestGetStatusToolHandler.js';
|
|
109
109
|
|
|
110
110
|
// Editor control handlers
|
|
111
|
-
export {
|
|
112
|
-
export {
|
|
113
|
-
export {
|
|
114
|
-
export {
|
|
115
|
-
export {
|
|
111
|
+
export { EditorTagsManageToolHandler } from './editor/EditorTagsManageToolHandler.js';
|
|
112
|
+
export { EditorLayersManageToolHandler } from './editor/EditorLayersManageToolHandler.js';
|
|
113
|
+
export { EditorSelectionManageToolHandler } from './editor/EditorSelectionManageToolHandler.js';
|
|
114
|
+
export { EditorWindowsManageToolHandler } from './editor/EditorWindowsManageToolHandler.js';
|
|
115
|
+
export { EditorToolsManageToolHandler } from './editor/EditorToolsManageToolHandler.js';
|
|
116
116
|
|
|
117
117
|
// Settings handlers
|
|
118
|
-
export {
|
|
119
|
-
export {
|
|
118
|
+
export { SettingsGetToolHandler } from './settings/SettingsGetToolHandler.js';
|
|
119
|
+
export { SettingsUpdateToolHandler } from './settings/SettingsUpdateToolHandler.js';
|
|
120
120
|
|
|
121
121
|
// Package management handlers
|
|
122
122
|
export { default as PackageManagerToolHandler } from './package/PackageManagerToolHandler.js';
|
|
@@ -127,29 +127,32 @@ export { ScriptPackagesListToolHandler } from './script/ScriptPackagesListToolHa
|
|
|
127
127
|
export { ScriptReadToolHandler } from './script/ScriptReadToolHandler.js';
|
|
128
128
|
export { ScriptSearchToolHandler } from './script/ScriptSearchToolHandler.js';
|
|
129
129
|
export { ScriptEditStructuredToolHandler } from './script/ScriptEditStructuredToolHandler.js';
|
|
130
|
+
export { ScriptEditSnippetToolHandler } from './script/ScriptEditSnippetToolHandler.js';
|
|
130
131
|
export { ScriptRefsFindToolHandler } from './script/ScriptRefsFindToolHandler.js';
|
|
131
132
|
export { ScriptSymbolFindToolHandler } from './script/ScriptSymbolFindToolHandler.js';
|
|
132
133
|
export { ScriptSymbolsGetToolHandler } from './script/ScriptSymbolsGetToolHandler.js';
|
|
133
134
|
export { ScriptIndexStatusToolHandler } from './script/ScriptIndexStatusToolHandler.js';
|
|
134
135
|
export { ScriptRefactorRenameToolHandler } from './script/ScriptRefactorRenameToolHandler.js';
|
|
135
|
-
export {
|
|
136
|
+
export { ScriptCreateClassToolHandler } from './script/ScriptCreateClassToolHandler.js';
|
|
136
137
|
export { ScriptRemoveSymbolToolHandler } from './script/ScriptRemoveSymbolToolHandler.js';
|
|
138
|
+
export { CodeIndexUpdateToolHandler } from './script/CodeIndexUpdateToolHandler.js';
|
|
139
|
+
export { CodeIndexBuildToolHandler } from './script/CodeIndexBuildToolHandler.js';
|
|
137
140
|
// Deprecated Unity-communication handlers removed: ScriptEditPatchToolHandler, ScriptReplacePatternToolHandler
|
|
138
141
|
// Script tool registry
|
|
139
142
|
|
|
140
143
|
// Import all handler classes at once
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
144
|
+
import { SystemPingToolHandler } from './system/SystemPingToolHandler.js';
|
|
145
|
+
import { SystemRefreshAssetsToolHandler } from './system/SystemRefreshAssetsToolHandler.js';
|
|
146
|
+
import { SystemGetCommandStatsToolHandler } from './system/SystemGetCommandStatsToolHandler.js';
|
|
147
|
+
import { GameObjectCreateToolHandler } from './gameobject/GameObjectCreateToolHandler.js';
|
|
148
|
+
import { GameObjectFindToolHandler } from './gameobject/GameObjectFindToolHandler.js';
|
|
149
|
+
import { GameObjectModifyToolHandler } from './gameobject/GameObjectModifyToolHandler.js';
|
|
150
|
+
import { GameObjectDeleteToolHandler } from './gameobject/GameObjectDeleteToolHandler.js';
|
|
151
|
+
import { GameObjectGetHierarchyToolHandler } from './gameobject/GameObjectGetHierarchyToolHandler.js';
|
|
152
|
+
import { SceneCreateToolHandler } from './scene/SceneCreateToolHandler.js';
|
|
153
|
+
import { SceneLoadToolHandler } from './scene/SceneLoadToolHandler.js';
|
|
154
|
+
import { SceneSaveToolHandler } from './scene/SceneSaveToolHandler.js';
|
|
155
|
+
import { SceneListToolHandler } from './scene/SceneListToolHandler.js';
|
|
153
156
|
import { GetSceneInfoToolHandler } from './scene/GetSceneInfoToolHandler.js';
|
|
154
157
|
import { GetGameObjectDetailsToolHandler } from './analysis/GetGameObjectDetailsToolHandler.js';
|
|
155
158
|
import { AnalyzeSceneContentsToolHandler } from './analysis/AnalyzeSceneContentsToolHandler.js';
|
|
@@ -158,100 +161,102 @@ import { FindByComponentToolHandler } from './analysis/FindByComponentToolHandle
|
|
|
158
161
|
import { GetObjectReferencesToolHandler } from './analysis/GetObjectReferencesToolHandler.js';
|
|
159
162
|
import { GetAnimatorStateToolHandler, GetAnimatorRuntimeInfoToolHandler } from './analysis/GetAnimatorStateToolHandler.js';
|
|
160
163
|
import { GetInputActionsStateToolHandler, AnalyzeInputActionsAssetToolHandler } from './analysis/GetInputActionsStateToolHandler.js';
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
182
|
-
import {
|
|
183
|
-
import {
|
|
184
|
-
import {
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import {
|
|
195
|
-
import {
|
|
196
|
-
import {
|
|
197
|
-
import {
|
|
198
|
-
import {
|
|
199
|
-
import {
|
|
200
|
-
import {
|
|
201
|
-
import {
|
|
202
|
-
import {
|
|
203
|
-
import {
|
|
204
|
-
import {
|
|
205
|
-
import {
|
|
206
|
-
import {
|
|
207
|
-
import {
|
|
208
|
-
import {
|
|
209
|
-
import {
|
|
210
|
-
import {
|
|
211
|
-
import {
|
|
212
|
-
import {
|
|
213
|
-
import {
|
|
214
|
-
import {
|
|
215
|
-
import {
|
|
216
|
-
import {
|
|
217
|
-
import {
|
|
218
|
-
import {
|
|
219
|
-
import {
|
|
164
|
+
import { PlaymodePlayToolHandler } from './playmode/PlaymodePlayToolHandler.js';
|
|
165
|
+
import { PlaymodePauseToolHandler } from './playmode/PlaymodePauseToolHandler.js';
|
|
166
|
+
import { PlaymodeStopToolHandler } from './playmode/PlaymodeStopToolHandler.js';
|
|
167
|
+
import { PlaymodeGetStateToolHandler } from './playmode/PlaymodeGetStateToolHandler.js';
|
|
168
|
+
import { PlaymodeWaitForStateToolHandler } from './playmode/PlaymodeWaitForStateToolHandler.js';
|
|
169
|
+
import { UIFindElementsToolHandler } from './ui/UIFindElementsToolHandler.js';
|
|
170
|
+
import { UIClickElementToolHandler } from './ui/UIClickElementToolHandler.js';
|
|
171
|
+
import { UIGetElementStateToolHandler } from './ui/UIGetElementStateToolHandler.js';
|
|
172
|
+
import { UISetElementValueToolHandler } from './ui/UISetElementValueToolHandler.js';
|
|
173
|
+
import { UISimulateInputToolHandler } from './ui/UISimulateInputToolHandler.js';
|
|
174
|
+
import { InputSystemControlToolHandler } from './input/InputSystemControlToolHandler.js';
|
|
175
|
+
import { InputKeyboardSimulateToolHandler } from './input/InputKeyboardSimulateToolHandler.js';
|
|
176
|
+
import { InputMouseSimulateToolHandler } from './input/InputMouseSimulateToolHandler.js';
|
|
177
|
+
import { InputGamepadSimulateToolHandler } from './input/InputGamepadSimulateToolHandler.js';
|
|
178
|
+
import { InputTouchSimulateToolHandler } from './input/InputTouchSimulateToolHandler.js';
|
|
179
|
+
import { InputActionMapCreateToolHandler } from './input/InputActionMapCreateToolHandler.js';
|
|
180
|
+
import { InputActionMapRemoveToolHandler } from './input/InputActionMapRemoveToolHandler.js';
|
|
181
|
+
import { InputActionAddToolHandler } from './input/InputActionAddToolHandler.js';
|
|
182
|
+
import { InputActionRemoveToolHandler } from './input/InputActionRemoveToolHandler.js';
|
|
183
|
+
import { InputBindingAddToolHandler } from './input/InputBindingAddToolHandler.js';
|
|
184
|
+
import { InputBindingRemoveToolHandler } from './input/InputBindingRemoveToolHandler.js';
|
|
185
|
+
import { InputBindingRemoveAllToolHandler } from './input/InputBindingRemoveAllToolHandler.js';
|
|
186
|
+
import { InputBindingCompositeCreateToolHandler } from './input/InputBindingCompositeCreateToolHandler.js';
|
|
187
|
+
import { InputControlSchemesManageToolHandler } from './input/InputControlSchemesManageToolHandler.js';
|
|
188
|
+
import { AssetPrefabCreateToolHandler } from './asset/AssetPrefabCreateToolHandler.js';
|
|
189
|
+
import { AssetPrefabModifyToolHandler } from './asset/AssetPrefabModifyToolHandler.js';
|
|
190
|
+
import { AssetPrefabInstantiateToolHandler } from './asset/AssetPrefabInstantiateToolHandler.js';
|
|
191
|
+
import { AssetMaterialCreateToolHandler } from './asset/AssetMaterialCreateToolHandler.js';
|
|
192
|
+
import { AssetMaterialModifyToolHandler } from './asset/AssetMaterialModifyToolHandler.js';
|
|
193
|
+
import { AssetPrefabOpenToolHandler } from './asset/AssetPrefabOpenToolHandler.js';
|
|
194
|
+
import { AssetPrefabExitModeToolHandler } from './asset/AssetPrefabExitModeToolHandler.js';
|
|
195
|
+
import { AssetPrefabSaveToolHandler } from './asset/AssetPrefabSaveToolHandler.js';
|
|
196
|
+
import { AssetImportSettingsManageToolHandler } from './asset/AssetImportSettingsManageToolHandler.js';
|
|
197
|
+
import { AssetDatabaseManageToolHandler } from './asset/AssetDatabaseManageToolHandler.js';
|
|
198
|
+
import { AssetDependencyAnalyzeToolHandler } from './asset/AssetDependencyAnalyzeToolHandler.js';
|
|
199
|
+
import { MenuItemExecuteToolHandler } from './menu/MenuItemExecuteToolHandler.js';
|
|
200
|
+
import { ConsoleClearToolHandler } from './console/ConsoleClearToolHandler.js';
|
|
201
|
+
import { ConsoleReadToolHandler } from './console/ConsoleReadToolHandler.js';
|
|
202
|
+
import { ScreenshotCaptureToolHandler } from './screenshot/ScreenshotCaptureToolHandler.js';
|
|
203
|
+
import { ScreenshotAnalyzeToolHandler } from './screenshot/ScreenshotAnalyzeToolHandler.js';
|
|
204
|
+
import { VideoCaptureStartToolHandler } from './video/VideoCaptureStartToolHandler.js';
|
|
205
|
+
import { VideoCaptureStopToolHandler } from './video/VideoCaptureStopToolHandler.js';
|
|
206
|
+
import { VideoCaptureStatusToolHandler } from './video/VideoCaptureStatusToolHandler.js';
|
|
207
|
+
import { VideoCaptureForToolHandler } from './video/VideoCaptureForToolHandler.js';
|
|
208
|
+
import { ComponentAddToolHandler } from './component/ComponentAddToolHandler.js';
|
|
209
|
+
import { ComponentRemoveToolHandler } from './component/ComponentRemoveToolHandler.js';
|
|
210
|
+
import { ComponentModifyToolHandler } from './component/ComponentModifyToolHandler.js';
|
|
211
|
+
import { ComponentListToolHandler } from './component/ComponentListToolHandler.js';
|
|
212
|
+
import { ComponentGetTypesToolHandler } from './component/ComponentGetTypesToolHandler.js';
|
|
213
|
+
import { CompilationGetStateToolHandler } from './compilation/CompilationGetStateToolHandler.js';
|
|
214
|
+
import { TestRunToolHandler } from './test/TestRunToolHandler.js';
|
|
215
|
+
import { TestGetStatusToolHandler } from './test/TestGetStatusToolHandler.js';
|
|
216
|
+
import { EditorTagsManageToolHandler } from './editor/EditorTagsManageToolHandler.js';
|
|
217
|
+
import { EditorLayersManageToolHandler } from './editor/EditorLayersManageToolHandler.js';
|
|
218
|
+
import { EditorSelectionManageToolHandler } from './editor/EditorSelectionManageToolHandler.js';
|
|
219
|
+
import { EditorWindowsManageToolHandler } from './editor/EditorWindowsManageToolHandler.js';
|
|
220
|
+
import { EditorToolsManageToolHandler } from './editor/EditorToolsManageToolHandler.js';
|
|
221
|
+
import { SettingsGetToolHandler } from './settings/SettingsGetToolHandler.js';
|
|
222
|
+
import { SettingsUpdateToolHandler } from './settings/SettingsUpdateToolHandler.js';
|
|
220
223
|
import PackageManagerToolHandler from './package/PackageManagerToolHandler.js';
|
|
221
224
|
import RegistryConfigToolHandler from './package/RegistryConfigToolHandler.js';
|
|
222
225
|
import { ScriptPackagesListToolHandler } from './script/ScriptPackagesListToolHandler.js';
|
|
223
226
|
import { ScriptReadToolHandler } from './script/ScriptReadToolHandler.js';
|
|
224
227
|
import { ScriptSearchToolHandler } from './script/ScriptSearchToolHandler.js';
|
|
225
228
|
import { ScriptEditStructuredToolHandler } from './script/ScriptEditStructuredToolHandler.js';
|
|
229
|
+
import { ScriptEditSnippetToolHandler } from './script/ScriptEditSnippetToolHandler.js';
|
|
226
230
|
import { ScriptSymbolsGetToolHandler } from './script/ScriptSymbolsGetToolHandler.js';
|
|
227
231
|
import { ScriptSymbolFindToolHandler } from './script/ScriptSymbolFindToolHandler.js';
|
|
228
232
|
import { ScriptRefsFindToolHandler } from './script/ScriptRefsFindToolHandler.js';
|
|
229
233
|
import { ScriptIndexStatusToolHandler } from './script/ScriptIndexStatusToolHandler.js';
|
|
230
234
|
import { ScriptRefactorRenameToolHandler } from './script/ScriptRefactorRenameToolHandler.js';
|
|
231
|
-
import {
|
|
235
|
+
import { ScriptCreateClassToolHandler } from './script/ScriptCreateClassToolHandler.js';
|
|
232
236
|
import { ScriptRemoveSymbolToolHandler } from './script/ScriptRemoveSymbolToolHandler.js';
|
|
233
|
-
import {
|
|
237
|
+
import { CodeIndexUpdateToolHandler } from './script/CodeIndexUpdateToolHandler.js';
|
|
238
|
+
import { CodeIndexBuildToolHandler } from './script/CodeIndexBuildToolHandler.js';
|
|
234
239
|
// Roslyn (external CLI) tool handlers removed(内部ユーティリティのみ存続)
|
|
235
240
|
|
|
236
241
|
// Handler registry - single source of truth
|
|
237
242
|
const HANDLER_CLASSES = [
|
|
238
243
|
// System handlers
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
244
|
+
SystemPingToolHandler,
|
|
245
|
+
SystemRefreshAssetsToolHandler,
|
|
246
|
+
SystemGetCommandStatsToolHandler,
|
|
242
247
|
|
|
243
248
|
// GameObject handlers
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
+
GameObjectCreateToolHandler,
|
|
250
|
+
GameObjectFindToolHandler,
|
|
251
|
+
GameObjectModifyToolHandler,
|
|
252
|
+
GameObjectDeleteToolHandler,
|
|
253
|
+
GameObjectGetHierarchyToolHandler,
|
|
249
254
|
|
|
250
255
|
// Scene handlers
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
256
|
+
SceneCreateToolHandler,
|
|
257
|
+
SceneLoadToolHandler,
|
|
258
|
+
SceneSaveToolHandler,
|
|
259
|
+
SceneListToolHandler,
|
|
255
260
|
GetSceneInfoToolHandler,
|
|
256
261
|
|
|
257
262
|
// Analysis handlers
|
|
@@ -266,102 +271,104 @@ const HANDLER_CLASSES = [
|
|
|
266
271
|
AnalyzeInputActionsAssetToolHandler,
|
|
267
272
|
|
|
268
273
|
// PlayMode handlers
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
+
PlaymodePlayToolHandler,
|
|
275
|
+
PlaymodePauseToolHandler,
|
|
276
|
+
PlaymodeStopToolHandler,
|
|
277
|
+
PlaymodeGetStateToolHandler,
|
|
278
|
+
PlaymodeWaitForStateToolHandler,
|
|
274
279
|
|
|
275
280
|
// UI handlers
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
+
UIFindElementsToolHandler,
|
|
282
|
+
UIClickElementToolHandler,
|
|
283
|
+
UIGetElementStateToolHandler,
|
|
284
|
+
UISetElementValueToolHandler,
|
|
285
|
+
UISimulateInputToolHandler,
|
|
281
286
|
|
|
282
287
|
// Input System handlers
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
288
|
+
InputSystemControlToolHandler,
|
|
289
|
+
InputKeyboardSimulateToolHandler,
|
|
290
|
+
InputMouseSimulateToolHandler,
|
|
291
|
+
InputGamepadSimulateToolHandler,
|
|
292
|
+
InputTouchSimulateToolHandler,
|
|
293
|
+
InputActionMapCreateToolHandler,
|
|
294
|
+
InputActionMapRemoveToolHandler,
|
|
295
|
+
InputActionAddToolHandler,
|
|
296
|
+
InputActionRemoveToolHandler,
|
|
297
|
+
InputBindingAddToolHandler,
|
|
298
|
+
InputBindingRemoveToolHandler,
|
|
299
|
+
InputBindingRemoveAllToolHandler,
|
|
300
|
+
InputBindingCompositeCreateToolHandler,
|
|
301
|
+
InputControlSchemesManageToolHandler,
|
|
297
302
|
|
|
298
303
|
// Asset handlers
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
304
|
+
AssetPrefabCreateToolHandler,
|
|
305
|
+
AssetPrefabModifyToolHandler,
|
|
306
|
+
AssetPrefabInstantiateToolHandler,
|
|
307
|
+
AssetMaterialCreateToolHandler,
|
|
308
|
+
AssetMaterialModifyToolHandler,
|
|
309
|
+
AssetPrefabOpenToolHandler,
|
|
310
|
+
AssetPrefabExitModeToolHandler,
|
|
311
|
+
AssetPrefabSaveToolHandler,
|
|
312
|
+
AssetImportSettingsManageToolHandler,
|
|
313
|
+
AssetDatabaseManageToolHandler,
|
|
314
|
+
AssetDependencyAnalyzeToolHandler,
|
|
310
315
|
|
|
311
316
|
// Menu handlers
|
|
312
|
-
|
|
317
|
+
MenuItemExecuteToolHandler,
|
|
313
318
|
|
|
314
319
|
// Console handlers
|
|
315
|
-
|
|
316
|
-
|
|
320
|
+
ConsoleClearToolHandler,
|
|
321
|
+
ConsoleReadToolHandler,
|
|
317
322
|
|
|
318
323
|
// Screenshot handlers
|
|
319
|
-
|
|
320
|
-
|
|
324
|
+
ScreenshotCaptureToolHandler,
|
|
325
|
+
ScreenshotAnalyzeToolHandler,
|
|
321
326
|
// Video handlers
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
327
|
+
VideoCaptureStartToolHandler,
|
|
328
|
+
VideoCaptureStopToolHandler,
|
|
329
|
+
VideoCaptureStatusToolHandler,
|
|
330
|
+
VideoCaptureForToolHandler,
|
|
326
331
|
// Script handlers
|
|
327
332
|
ScriptPackagesListToolHandler,
|
|
328
333
|
ScriptReadToolHandler,
|
|
329
334
|
ScriptSearchToolHandler,
|
|
330
335
|
ScriptEditStructuredToolHandler,
|
|
336
|
+
ScriptEditSnippetToolHandler,
|
|
331
337
|
ScriptRefsFindToolHandler,
|
|
332
338
|
ScriptSymbolFindToolHandler,
|
|
333
339
|
ScriptSymbolsGetToolHandler,
|
|
334
340
|
ScriptIndexStatusToolHandler,
|
|
335
341
|
ScriptRefactorRenameToolHandler,
|
|
336
|
-
|
|
342
|
+
ScriptCreateClassToolHandler,
|
|
337
343
|
ScriptRemoveSymbolToolHandler,
|
|
338
|
-
|
|
344
|
+
CodeIndexUpdateToolHandler,
|
|
345
|
+
CodeIndexBuildToolHandler,
|
|
339
346
|
|
|
340
347
|
|
|
341
348
|
// Component handlers
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
349
|
+
ComponentAddToolHandler,
|
|
350
|
+
ComponentRemoveToolHandler,
|
|
351
|
+
ComponentModifyToolHandler,
|
|
352
|
+
ComponentListToolHandler,
|
|
353
|
+
ComponentGetTypesToolHandler,
|
|
347
354
|
|
|
348
355
|
// Compilation handlers
|
|
349
|
-
|
|
356
|
+
CompilationGetStateToolHandler,
|
|
350
357
|
|
|
351
358
|
// Test handlers
|
|
352
|
-
|
|
353
|
-
|
|
359
|
+
TestRunToolHandler,
|
|
360
|
+
TestGetStatusToolHandler,
|
|
354
361
|
|
|
355
362
|
// Editor control handlers
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
363
|
+
EditorTagsManageToolHandler,
|
|
364
|
+
EditorLayersManageToolHandler,
|
|
365
|
+
EditorSelectionManageToolHandler,
|
|
366
|
+
EditorWindowsManageToolHandler,
|
|
367
|
+
EditorToolsManageToolHandler,
|
|
361
368
|
|
|
362
369
|
// Settings handlers
|
|
363
|
-
|
|
364
|
-
|
|
370
|
+
SettingsGetToolHandler,
|
|
371
|
+
SettingsUpdateToolHandler,
|
|
365
372
|
|
|
366
373
|
// Package management handlers
|
|
367
374
|
PackageManagerToolHandler,
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
addInputActionHandler
|
|
5
5
|
} from '../../tools/input/inputActionsEditor.js';
|
|
6
6
|
|
|
7
|
-
export class
|
|
7
|
+
export class InputActionAddToolHandler extends BaseToolHandler {
|
|
8
8
|
constructor(unityConnection) {
|
|
9
9
|
super(
|
|
10
10
|
addInputActionToolDefinition.name,
|
|
@@ -17,4 +17,4 @@ export class AddInputActionToolHandler extends BaseToolHandler {
|
|
|
17
17
|
async execute(args) {
|
|
18
18
|
return addInputActionHandler(this.unityConnection, args);
|
|
19
19
|
}
|
|
20
|
-
}
|
|
20
|
+
}
|
package/src/handlers/input/{CreateActionMapToolHandler.js → InputActionMapCreateToolHandler.js}
RENAMED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
createActionMapHandler
|
|
5
5
|
} from '../../tools/input/inputActionsEditor.js';
|
|
6
6
|
|
|
7
|
-
export class
|
|
7
|
+
export class InputActionMapCreateToolHandler extends BaseToolHandler {
|
|
8
8
|
constructor(unityConnection) {
|
|
9
9
|
super(
|
|
10
10
|
createActionMapToolDefinition.name,
|
|
@@ -17,4 +17,4 @@ export class CreateActionMapToolHandler extends BaseToolHandler {
|
|
|
17
17
|
async execute(args) {
|
|
18
18
|
return createActionMapHandler(this.unityConnection, args);
|
|
19
19
|
}
|
|
20
|
-
}
|
|
20
|
+
}
|