@akiojin/unity-mcp-server 5.2.1 → 5.3.2
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 +1 -0
- package/package.json +28 -40
- package/src/core/codeIndex.js +54 -7
- package/src/core/config.js +15 -1
- package/src/core/httpServer.js +30 -6
- package/src/core/indexBuildWorkerPool.js +57 -3
- package/src/core/indexWatcher.js +10 -4
- package/src/core/projectInfo.js +34 -12
- package/src/core/server.js +58 -27
- package/src/core/toolManifest.json +145 -629
- package/src/handlers/addressables/AddressablesAnalyzeToolHandler.js +14 -6
- package/src/handlers/addressables/AddressablesBuildToolHandler.js +6 -3
- package/src/handlers/addressables/AddressablesManageToolHandler.js +6 -3
- package/src/handlers/input/InputSystemControlToolHandler.js +1 -1
- package/src/handlers/input/InputTouchToolHandler.js +7 -3
- package/src/handlers/package/PackageManagerToolHandler.js +6 -3
- package/src/handlers/script/CodeIndexStatusToolHandler.js +37 -1
- package/src/handlers/script/CodeIndexUpdateToolHandler.js +1 -1
- package/src/handlers/script/ScriptEditSnippetToolHandler.js +1 -2
- package/src/handlers/script/ScriptEditStructuredToolHandler.js +6 -1
- package/src/handlers/script/ScriptRefactorRenameToolHandler.js +3 -1
- package/src/handlers/script/ScriptRefsFindToolHandler.js +22 -4
- package/src/handlers/script/ScriptRemoveSymbolToolHandler.js +6 -1
- package/src/handlers/script/ScriptSymbolsGetToolHandler.js +1 -1
- package/src/lsp/CSharpLspUtils.js +11 -3
- package/src/lsp/LspProcessManager.js +24 -5
- package/src/lsp/LspRpcClient.js +115 -23
- package/src/lsp/LspRpcClientSingleton.js +79 -2
|
@@ -7,11 +7,7 @@
|
|
|
7
7
|
"properties": {
|
|
8
8
|
"action": {
|
|
9
9
|
"type": "string",
|
|
10
|
-
"enum": [
|
|
11
|
-
"analyze_duplicates",
|
|
12
|
-
"analyze_dependencies",
|
|
13
|
-
"analyze_unused"
|
|
14
|
-
],
|
|
10
|
+
"enum": ["analyze_duplicates", "analyze_dependencies", "analyze_unused"],
|
|
15
11
|
"description": "The Addressables analysis operation to perform"
|
|
16
12
|
},
|
|
17
13
|
"assetPath": {
|
|
@@ -33,9 +29,7 @@
|
|
|
33
29
|
"description": "Offset for pagination"
|
|
34
30
|
}
|
|
35
31
|
},
|
|
36
|
-
"required": [
|
|
37
|
-
"action"
|
|
38
|
-
]
|
|
32
|
+
"required": ["action"]
|
|
39
33
|
}
|
|
40
34
|
},
|
|
41
35
|
{
|
|
@@ -46,10 +40,7 @@
|
|
|
46
40
|
"properties": {
|
|
47
41
|
"action": {
|
|
48
42
|
"type": "string",
|
|
49
|
-
"enum": [
|
|
50
|
-
"build",
|
|
51
|
-
"clean_build"
|
|
52
|
-
],
|
|
43
|
+
"enum": ["build", "clean_build"],
|
|
53
44
|
"description": "The Addressables build operation to perform"
|
|
54
45
|
},
|
|
55
46
|
"buildTarget": {
|
|
@@ -66,9 +57,7 @@
|
|
|
66
57
|
"description": "Optional build target platform (for build action)"
|
|
67
58
|
}
|
|
68
59
|
},
|
|
69
|
-
"required": [
|
|
70
|
-
"action"
|
|
71
|
-
]
|
|
60
|
+
"required": ["action"]
|
|
72
61
|
}
|
|
73
62
|
},
|
|
74
63
|
{
|
|
@@ -139,9 +128,7 @@
|
|
|
139
128
|
"description": "Offset for pagination (for list_entries)"
|
|
140
129
|
}
|
|
141
130
|
},
|
|
142
|
-
"required": [
|
|
143
|
-
"action"
|
|
144
|
-
]
|
|
131
|
+
"required": ["action"]
|
|
145
132
|
}
|
|
146
133
|
},
|
|
147
134
|
{
|
|
@@ -170,9 +157,7 @@
|
|
|
170
157
|
"default": false
|
|
171
158
|
}
|
|
172
159
|
},
|
|
173
|
-
"required": [
|
|
174
|
-
"gameObjectName"
|
|
175
|
-
]
|
|
160
|
+
"required": ["gameObjectName"]
|
|
176
161
|
}
|
|
177
162
|
},
|
|
178
163
|
{
|
|
@@ -211,9 +196,7 @@
|
|
|
211
196
|
"default": -1
|
|
212
197
|
}
|
|
213
198
|
},
|
|
214
|
-
"required": [
|
|
215
|
-
"gameObjectName"
|
|
216
|
-
]
|
|
199
|
+
"required": ["gameObjectName"]
|
|
217
200
|
}
|
|
218
201
|
},
|
|
219
202
|
{
|
|
@@ -232,11 +215,7 @@
|
|
|
232
215
|
},
|
|
233
216
|
"searchScope": {
|
|
234
217
|
"type": "string",
|
|
235
|
-
"enum": [
|
|
236
|
-
"scene",
|
|
237
|
-
"prefabs",
|
|
238
|
-
"all"
|
|
239
|
-
],
|
|
218
|
+
"enum": ["scene", "prefabs", "all"],
|
|
240
219
|
"description": "Where to search: current scene, prefabs, or all. Default: \"scene\""
|
|
241
220
|
},
|
|
242
221
|
"matchExactType": {
|
|
@@ -244,9 +223,7 @@
|
|
|
244
223
|
"description": "Match exact type only (not derived types). Default: true"
|
|
245
224
|
}
|
|
246
225
|
},
|
|
247
|
-
"required": [
|
|
248
|
-
"componentType"
|
|
249
|
-
]
|
|
226
|
+
"required": ["componentType"]
|
|
250
227
|
}
|
|
251
228
|
},
|
|
252
229
|
{
|
|
@@ -276,10 +253,7 @@
|
|
|
276
253
|
"description": "Include inherited properties. Default: true"
|
|
277
254
|
}
|
|
278
255
|
},
|
|
279
|
-
"required": [
|
|
280
|
-
"gameObjectName",
|
|
281
|
-
"componentType"
|
|
282
|
-
]
|
|
256
|
+
"required": ["gameObjectName", "componentType"]
|
|
283
257
|
}
|
|
284
258
|
},
|
|
285
259
|
{
|
|
@@ -313,9 +287,7 @@
|
|
|
313
287
|
"description": "Maximum depth for child traversal. Default: 3, Range: 0-10"
|
|
314
288
|
}
|
|
315
289
|
},
|
|
316
|
-
"required": [
|
|
317
|
-
"gameObjectName"
|
|
318
|
-
]
|
|
290
|
+
"required": ["gameObjectName"]
|
|
319
291
|
}
|
|
320
292
|
},
|
|
321
293
|
{
|
|
@@ -341,9 +313,7 @@
|
|
|
341
313
|
"description": "Also search for references in prefab assets. Default: false"
|
|
342
314
|
}
|
|
343
315
|
},
|
|
344
|
-
"required": [
|
|
345
|
-
"gameObjectName"
|
|
346
|
-
]
|
|
316
|
+
"required": ["gameObjectName"]
|
|
347
317
|
}
|
|
348
318
|
},
|
|
349
319
|
{
|
|
@@ -419,9 +389,7 @@
|
|
|
419
389
|
"description": "Destination path for move/copy operations"
|
|
420
390
|
}
|
|
421
391
|
},
|
|
422
|
-
"required": [
|
|
423
|
-
"action"
|
|
424
|
-
]
|
|
392
|
+
"required": ["action"]
|
|
425
393
|
}
|
|
426
394
|
},
|
|
427
395
|
{
|
|
@@ -455,9 +423,7 @@
|
|
|
455
423
|
"description": "Whether to include built-in assets in analysis (for find_unused)"
|
|
456
424
|
}
|
|
457
425
|
},
|
|
458
|
-
"required": [
|
|
459
|
-
"action"
|
|
460
|
-
]
|
|
426
|
+
"required": ["action"]
|
|
461
427
|
}
|
|
462
428
|
},
|
|
463
429
|
{
|
|
@@ -468,12 +434,7 @@
|
|
|
468
434
|
"properties": {
|
|
469
435
|
"action": {
|
|
470
436
|
"type": "string",
|
|
471
|
-
"enum": [
|
|
472
|
-
"get",
|
|
473
|
-
"modify",
|
|
474
|
-
"apply_preset",
|
|
475
|
-
"reimport"
|
|
476
|
-
],
|
|
437
|
+
"enum": ["get", "modify", "apply_preset", "reimport"],
|
|
477
438
|
"description": "The action to perform"
|
|
478
439
|
},
|
|
479
440
|
"assetPath": {
|
|
@@ -489,10 +450,7 @@
|
|
|
489
450
|
"description": "Name of the preset to apply (required for apply_preset action)"
|
|
490
451
|
}
|
|
491
452
|
},
|
|
492
|
-
"required": [
|
|
493
|
-
"action",
|
|
494
|
-
"assetPath"
|
|
495
|
-
]
|
|
453
|
+
"required": ["action", "assetPath"]
|
|
496
454
|
}
|
|
497
455
|
},
|
|
498
456
|
{
|
|
@@ -522,9 +480,7 @@
|
|
|
522
480
|
"description": "If true, overwrite existing material at the path."
|
|
523
481
|
}
|
|
524
482
|
},
|
|
525
|
-
"required": [
|
|
526
|
-
"materialPath"
|
|
527
|
-
]
|
|
483
|
+
"required": ["materialPath"]
|
|
528
484
|
}
|
|
529
485
|
},
|
|
530
486
|
{
|
|
@@ -546,10 +502,7 @@
|
|
|
546
502
|
"description": "Optional: change the shader (e.g., Standard, Unlit/Color)."
|
|
547
503
|
}
|
|
548
504
|
},
|
|
549
|
-
"required": [
|
|
550
|
-
"materialPath",
|
|
551
|
-
"properties"
|
|
552
|
-
]
|
|
505
|
+
"required": ["materialPath", "properties"]
|
|
553
506
|
}
|
|
554
507
|
},
|
|
555
508
|
{
|
|
@@ -575,9 +528,7 @@
|
|
|
575
528
|
"description": "If true, overwrite existing prefab at the destination path (default: false)."
|
|
576
529
|
}
|
|
577
530
|
},
|
|
578
|
-
"required": [
|
|
579
|
-
"prefabPath"
|
|
580
|
-
]
|
|
531
|
+
"required": ["prefabPath"]
|
|
581
532
|
}
|
|
582
533
|
},
|
|
583
534
|
{
|
|
@@ -642,9 +593,7 @@
|
|
|
642
593
|
"description": "Override name for the instantiated object."
|
|
643
594
|
}
|
|
644
595
|
},
|
|
645
|
-
"required": [
|
|
646
|
-
"prefabPath"
|
|
647
|
-
]
|
|
596
|
+
"required": ["prefabPath"]
|
|
648
597
|
}
|
|
649
598
|
},
|
|
650
599
|
{
|
|
@@ -666,10 +615,7 @@
|
|
|
666
615
|
"description": "If true, also apply to existing scene instances (default: true)."
|
|
667
616
|
}
|
|
668
617
|
},
|
|
669
|
-
"required": [
|
|
670
|
-
"prefabPath",
|
|
671
|
-
"modifications"
|
|
672
|
-
]
|
|
618
|
+
"required": ["prefabPath", "modifications"]
|
|
673
619
|
}
|
|
674
620
|
},
|
|
675
621
|
{
|
|
@@ -691,9 +637,7 @@
|
|
|
691
637
|
"description": "Isolate the focused object in the hierarchy (default: false)"
|
|
692
638
|
}
|
|
693
639
|
},
|
|
694
|
-
"required": [
|
|
695
|
-
"prefabPath"
|
|
696
|
-
]
|
|
640
|
+
"required": ["prefabPath"]
|
|
697
641
|
}
|
|
698
642
|
},
|
|
699
643
|
{
|
|
@@ -764,9 +708,7 @@
|
|
|
764
708
|
"description": "Maximum number of concurrent LSP requests. Default 4."
|
|
765
709
|
}
|
|
766
710
|
},
|
|
767
|
-
"required": [
|
|
768
|
-
"paths"
|
|
769
|
-
]
|
|
711
|
+
"required": ["paths"]
|
|
770
712
|
}
|
|
771
713
|
},
|
|
772
714
|
{
|
|
@@ -806,10 +748,7 @@
|
|
|
806
748
|
"additionalProperties": true
|
|
807
749
|
}
|
|
808
750
|
},
|
|
809
|
-
"required": [
|
|
810
|
-
"gameObjectPath",
|
|
811
|
-
"componentType"
|
|
812
|
-
]
|
|
751
|
+
"required": ["gameObjectPath", "componentType"]
|
|
813
752
|
}
|
|
814
753
|
},
|
|
815
754
|
{
|
|
@@ -821,12 +760,7 @@
|
|
|
821
760
|
"properties": {
|
|
822
761
|
"scope": {
|
|
823
762
|
"type": "string",
|
|
824
|
-
"enum": [
|
|
825
|
-
"auto",
|
|
826
|
-
"scene",
|
|
827
|
-
"prefabStage",
|
|
828
|
-
"prefabAsset"
|
|
829
|
-
],
|
|
763
|
+
"enum": ["auto", "scene", "prefabStage", "prefabAsset"],
|
|
830
764
|
"description": "Explicit scope for the operation. Use auto (default) to detect automatically."
|
|
831
765
|
},
|
|
832
766
|
"gameObjectPath": {
|
|
@@ -926,10 +860,7 @@
|
|
|
926
860
|
"description": "Mark the owning scene dirty when modifying scene objects. Defaults to true."
|
|
927
861
|
}
|
|
928
862
|
},
|
|
929
|
-
"required": [
|
|
930
|
-
"componentType",
|
|
931
|
-
"fieldPath"
|
|
932
|
-
]
|
|
863
|
+
"required": ["componentType", "fieldPath"]
|
|
933
864
|
}
|
|
934
865
|
},
|
|
935
866
|
{
|
|
@@ -968,9 +899,7 @@
|
|
|
968
899
|
"description": "Include inherited base component types (default: false)"
|
|
969
900
|
}
|
|
970
901
|
},
|
|
971
|
-
"required": [
|
|
972
|
-
"gameObjectPath"
|
|
973
|
-
]
|
|
902
|
+
"required": ["gameObjectPath"]
|
|
974
903
|
}
|
|
975
904
|
},
|
|
976
905
|
{
|
|
@@ -997,11 +926,7 @@
|
|
|
997
926
|
"additionalProperties": true
|
|
998
927
|
}
|
|
999
928
|
},
|
|
1000
|
-
"required": [
|
|
1001
|
-
"gameObjectPath",
|
|
1002
|
-
"componentType",
|
|
1003
|
-
"properties"
|
|
1004
|
-
]
|
|
929
|
+
"required": ["gameObjectPath", "componentType", "properties"]
|
|
1005
930
|
}
|
|
1006
931
|
},
|
|
1007
932
|
{
|
|
@@ -1023,10 +948,7 @@
|
|
|
1023
948
|
"description": "Index of component if multiple of same type exist (default: 0)"
|
|
1024
949
|
}
|
|
1025
950
|
},
|
|
1026
|
-
"required": [
|
|
1027
|
-
"gameObjectPath",
|
|
1028
|
-
"componentType"
|
|
1029
|
-
]
|
|
951
|
+
"required": ["gameObjectPath", "componentType"]
|
|
1030
952
|
}
|
|
1031
953
|
},
|
|
1032
954
|
{
|
|
@@ -1079,11 +1001,7 @@
|
|
|
1079
1001
|
"description": "Filter by log types. Allowed: Log, Warning, Error. Error expands to include Exception/Assert internally. Default: all three.",
|
|
1080
1002
|
"items": {
|
|
1081
1003
|
"type": "string",
|
|
1082
|
-
"enum": [
|
|
1083
|
-
"Log",
|
|
1084
|
-
"Warning",
|
|
1085
|
-
"Error"
|
|
1086
|
-
]
|
|
1004
|
+
"enum": ["Log", "Warning", "Error"]
|
|
1087
1005
|
}
|
|
1088
1006
|
},
|
|
1089
1007
|
"filterText": {
|
|
@@ -1098,12 +1016,7 @@
|
|
|
1098
1016
|
"format": {
|
|
1099
1017
|
"type": "string",
|
|
1100
1018
|
"description": "Output format for logs. Unity default: compact. RECOMMENDED: compact for general use, detailed for debugging",
|
|
1101
|
-
"enum": [
|
|
1102
|
-
"detailed",
|
|
1103
|
-
"compact",
|
|
1104
|
-
"json",
|
|
1105
|
-
"plain"
|
|
1106
|
-
]
|
|
1019
|
+
"enum": ["detailed", "compact", "json", "plain"]
|
|
1107
1020
|
},
|
|
1108
1021
|
"sinceTimestamp": {
|
|
1109
1022
|
"type": "string",
|
|
@@ -1116,20 +1029,12 @@
|
|
|
1116
1029
|
"sortOrder": {
|
|
1117
1030
|
"type": "string",
|
|
1118
1031
|
"description": "Sort order for logs (default: newest)",
|
|
1119
|
-
"enum": [
|
|
1120
|
-
"newest",
|
|
1121
|
-
"oldest"
|
|
1122
|
-
]
|
|
1032
|
+
"enum": ["newest", "oldest"]
|
|
1123
1033
|
},
|
|
1124
1034
|
"groupBy": {
|
|
1125
1035
|
"type": "string",
|
|
1126
1036
|
"description": "Group logs by criteria (default: none)",
|
|
1127
|
-
"enum": [
|
|
1128
|
-
"none",
|
|
1129
|
-
"type",
|
|
1130
|
-
"file",
|
|
1131
|
-
"time"
|
|
1132
|
-
]
|
|
1037
|
+
"enum": ["none", "type", "file", "time"]
|
|
1133
1038
|
}
|
|
1134
1039
|
}
|
|
1135
1040
|
}
|
|
@@ -1142,13 +1047,7 @@
|
|
|
1142
1047
|
"properties": {
|
|
1143
1048
|
"action": {
|
|
1144
1049
|
"type": "string",
|
|
1145
|
-
"enum": [
|
|
1146
|
-
"add",
|
|
1147
|
-
"remove",
|
|
1148
|
-
"get",
|
|
1149
|
-
"get_by_name",
|
|
1150
|
-
"get_by_index"
|
|
1151
|
-
],
|
|
1050
|
+
"enum": ["add", "remove", "get", "get_by_name", "get_by_index"],
|
|
1152
1051
|
"description": "Operation: add, remove, get, get_by_name, or get_by_index."
|
|
1153
1052
|
},
|
|
1154
1053
|
"layerName": {
|
|
@@ -1162,9 +1061,7 @@
|
|
|
1162
1061
|
"description": "Layer index (0-31). Required for get_by_index."
|
|
1163
1062
|
}
|
|
1164
1063
|
},
|
|
1165
|
-
"required": [
|
|
1166
|
-
"action"
|
|
1167
|
-
]
|
|
1064
|
+
"required": ["action"]
|
|
1168
1065
|
}
|
|
1169
1066
|
},
|
|
1170
1067
|
{
|
|
@@ -1183,12 +1080,7 @@
|
|
|
1183
1080
|
"properties": {
|
|
1184
1081
|
"action": {
|
|
1185
1082
|
"type": "string",
|
|
1186
|
-
"enum": [
|
|
1187
|
-
"get",
|
|
1188
|
-
"set",
|
|
1189
|
-
"clear",
|
|
1190
|
-
"get_details"
|
|
1191
|
-
],
|
|
1083
|
+
"enum": ["get", "set", "clear", "get_details"],
|
|
1192
1084
|
"description": "Operation: get, set, clear, or get_details."
|
|
1193
1085
|
},
|
|
1194
1086
|
"objectPaths": {
|
|
@@ -1203,9 +1095,7 @@
|
|
|
1203
1095
|
"description": "If true, return detailed info with get/get_details."
|
|
1204
1096
|
}
|
|
1205
1097
|
},
|
|
1206
|
-
"required": [
|
|
1207
|
-
"action"
|
|
1208
|
-
]
|
|
1098
|
+
"required": ["action"]
|
|
1209
1099
|
}
|
|
1210
1100
|
},
|
|
1211
1101
|
{
|
|
@@ -1216,11 +1106,7 @@
|
|
|
1216
1106
|
"properties": {
|
|
1217
1107
|
"action": {
|
|
1218
1108
|
"type": "string",
|
|
1219
|
-
"enum": [
|
|
1220
|
-
"add",
|
|
1221
|
-
"remove",
|
|
1222
|
-
"get"
|
|
1223
|
-
],
|
|
1109
|
+
"enum": ["add", "remove", "get"],
|
|
1224
1110
|
"description": "Operation: add, remove, or get."
|
|
1225
1111
|
},
|
|
1226
1112
|
"tagName": {
|
|
@@ -1228,9 +1114,7 @@
|
|
|
1228
1114
|
"description": "Tag name (required for add/remove). Alphanumeric/underscore only."
|
|
1229
1115
|
}
|
|
1230
1116
|
},
|
|
1231
|
-
"required": [
|
|
1232
|
-
"action"
|
|
1233
|
-
]
|
|
1117
|
+
"required": ["action"]
|
|
1234
1118
|
}
|
|
1235
1119
|
},
|
|
1236
1120
|
{
|
|
@@ -1241,12 +1125,7 @@
|
|
|
1241
1125
|
"properties": {
|
|
1242
1126
|
"action": {
|
|
1243
1127
|
"type": "string",
|
|
1244
|
-
"enum": [
|
|
1245
|
-
"get",
|
|
1246
|
-
"activate",
|
|
1247
|
-
"deactivate",
|
|
1248
|
-
"refresh"
|
|
1249
|
-
],
|
|
1128
|
+
"enum": ["get", "activate", "deactivate", "refresh"],
|
|
1250
1129
|
"description": "Operation: get, activate, deactivate, or refresh."
|
|
1251
1130
|
},
|
|
1252
1131
|
"toolName": {
|
|
@@ -1258,9 +1137,7 @@
|
|
|
1258
1137
|
"description": "Optional: filter list by category."
|
|
1259
1138
|
}
|
|
1260
1139
|
},
|
|
1261
|
-
"required": [
|
|
1262
|
-
"action"
|
|
1263
|
-
]
|
|
1140
|
+
"required": ["action"]
|
|
1264
1141
|
}
|
|
1265
1142
|
},
|
|
1266
1143
|
{
|
|
@@ -1271,11 +1148,7 @@
|
|
|
1271
1148
|
"properties": {
|
|
1272
1149
|
"action": {
|
|
1273
1150
|
"type": "string",
|
|
1274
|
-
"enum": [
|
|
1275
|
-
"get",
|
|
1276
|
-
"focus",
|
|
1277
|
-
"get_state"
|
|
1278
|
-
],
|
|
1151
|
+
"enum": ["get", "focus", "get_state"],
|
|
1279
1152
|
"description": "Operation: get (list), focus, or get_state."
|
|
1280
1153
|
},
|
|
1281
1154
|
"windowType": {
|
|
@@ -1287,9 +1160,7 @@
|
|
|
1287
1160
|
"description": "If true, includes hidden/minimized windows for get."
|
|
1288
1161
|
}
|
|
1289
1162
|
},
|
|
1290
|
-
"required": [
|
|
1291
|
-
"action"
|
|
1292
|
-
]
|
|
1163
|
+
"required": ["action"]
|
|
1293
1164
|
}
|
|
1294
1165
|
},
|
|
1295
1166
|
{
|
|
@@ -1305,14 +1176,7 @@
|
|
|
1305
1176
|
"primitiveType": {
|
|
1306
1177
|
"type": "string",
|
|
1307
1178
|
"description": "Type of primitive to create",
|
|
1308
|
-
"enum": [
|
|
1309
|
-
"cube",
|
|
1310
|
-
"sphere",
|
|
1311
|
-
"cylinder",
|
|
1312
|
-
"capsule",
|
|
1313
|
-
"plane",
|
|
1314
|
-
"quad"
|
|
1315
|
-
]
|
|
1179
|
+
"enum": ["cube", "sphere", "cylinder", "capsule", "plane", "quad"]
|
|
1316
1180
|
},
|
|
1317
1181
|
"position": {
|
|
1318
1182
|
"type": "object",
|
|
@@ -1538,10 +1402,7 @@
|
|
|
1538
1402
|
"description": "Set active state"
|
|
1539
1403
|
},
|
|
1540
1404
|
"parentPath": {
|
|
1541
|
-
"type": [
|
|
1542
|
-
"string",
|
|
1543
|
-
"null"
|
|
1544
|
-
],
|
|
1405
|
+
"type": ["string", "null"],
|
|
1545
1406
|
"description": "Path to new parent GameObject (null to unparent)"
|
|
1546
1407
|
},
|
|
1547
1408
|
"tag": {
|
|
@@ -1555,9 +1416,7 @@
|
|
|
1555
1416
|
"maximum": 31
|
|
1556
1417
|
}
|
|
1557
1418
|
},
|
|
1558
|
-
"required": [
|
|
1559
|
-
"path"
|
|
1560
|
-
]
|
|
1419
|
+
"required": ["path"]
|
|
1561
1420
|
}
|
|
1562
1421
|
},
|
|
1563
1422
|
{
|
|
@@ -1581,19 +1440,11 @@
|
|
|
1581
1440
|
"actionType": {
|
|
1582
1441
|
"type": "string",
|
|
1583
1442
|
"description": "Type of the action",
|
|
1584
|
-
"enum": [
|
|
1585
|
-
"Button",
|
|
1586
|
-
"Value",
|
|
1587
|
-
"PassThrough"
|
|
1588
|
-
],
|
|
1443
|
+
"enum": ["Button", "Value", "PassThrough"],
|
|
1589
1444
|
"default": "Button"
|
|
1590
1445
|
}
|
|
1591
1446
|
},
|
|
1592
|
-
"required": [
|
|
1593
|
-
"assetPath",
|
|
1594
|
-
"mapName",
|
|
1595
|
-
"actionName"
|
|
1596
|
-
]
|
|
1447
|
+
"required": ["assetPath", "mapName", "actionName"]
|
|
1597
1448
|
}
|
|
1598
1449
|
},
|
|
1599
1450
|
{
|
|
@@ -1621,20 +1472,13 @@
|
|
|
1621
1472
|
},
|
|
1622
1473
|
"type": {
|
|
1623
1474
|
"type": "string",
|
|
1624
|
-
"enum": [
|
|
1625
|
-
"Button",
|
|
1626
|
-
"Value",
|
|
1627
|
-
"PassThrough"
|
|
1628
|
-
]
|
|
1475
|
+
"enum": ["Button", "Value", "PassThrough"]
|
|
1629
1476
|
}
|
|
1630
1477
|
}
|
|
1631
1478
|
}
|
|
1632
1479
|
}
|
|
1633
1480
|
},
|
|
1634
|
-
"required": [
|
|
1635
|
-
"assetPath",
|
|
1636
|
-
"mapName"
|
|
1637
|
-
]
|
|
1481
|
+
"required": ["assetPath", "mapName"]
|
|
1638
1482
|
}
|
|
1639
1483
|
},
|
|
1640
1484
|
{
|
|
@@ -1652,10 +1496,7 @@
|
|
|
1652
1496
|
"description": "Name of the Action Map to remove"
|
|
1653
1497
|
}
|
|
1654
1498
|
},
|
|
1655
|
-
"required": [
|
|
1656
|
-
"assetPath",
|
|
1657
|
-
"mapName"
|
|
1658
|
-
]
|
|
1499
|
+
"required": ["assetPath", "mapName"]
|
|
1659
1500
|
}
|
|
1660
1501
|
},
|
|
1661
1502
|
{
|
|
@@ -1677,11 +1518,7 @@
|
|
|
1677
1518
|
"description": "Name of the Action to remove"
|
|
1678
1519
|
}
|
|
1679
1520
|
},
|
|
1680
|
-
"required": [
|
|
1681
|
-
"assetPath",
|
|
1682
|
-
"mapName",
|
|
1683
|
-
"actionName"
|
|
1684
|
-
]
|
|
1521
|
+
"required": ["assetPath", "mapName", "actionName"]
|
|
1685
1522
|
}
|
|
1686
1523
|
},
|
|
1687
1524
|
{
|
|
@@ -1705,9 +1542,7 @@
|
|
|
1705
1542
|
"default": true
|
|
1706
1543
|
}
|
|
1707
1544
|
},
|
|
1708
|
-
"required": [
|
|
1709
|
-
"assetPath"
|
|
1710
|
-
]
|
|
1545
|
+
"required": ["assetPath"]
|
|
1711
1546
|
}
|
|
1712
1547
|
},
|
|
1713
1548
|
{
|
|
@@ -1777,12 +1612,7 @@
|
|
|
1777
1612
|
"description": "Processors (e.g., \"scale\", \"invert\")"
|
|
1778
1613
|
}
|
|
1779
1614
|
},
|
|
1780
|
-
"required": [
|
|
1781
|
-
"assetPath",
|
|
1782
|
-
"mapName",
|
|
1783
|
-
"actionName",
|
|
1784
|
-
"path"
|
|
1785
|
-
]
|
|
1615
|
+
"required": ["assetPath", "mapName", "actionName", "path"]
|
|
1786
1616
|
}
|
|
1787
1617
|
},
|
|
1788
1618
|
{
|
|
@@ -1806,10 +1636,7 @@
|
|
|
1806
1636
|
"compositeType": {
|
|
1807
1637
|
"type": "string",
|
|
1808
1638
|
"description": "Type of composite",
|
|
1809
|
-
"enum": [
|
|
1810
|
-
"2DVector",
|
|
1811
|
-
"1DAxis"
|
|
1812
|
-
],
|
|
1639
|
+
"enum": ["2DVector", "1DAxis"],
|
|
1813
1640
|
"default": "2DVector"
|
|
1814
1641
|
},
|
|
1815
1642
|
"name": {
|
|
@@ -1845,12 +1672,7 @@
|
|
|
1845
1672
|
"description": "Control scheme groups"
|
|
1846
1673
|
}
|
|
1847
1674
|
},
|
|
1848
|
-
"required": [
|
|
1849
|
-
"assetPath",
|
|
1850
|
-
"mapName",
|
|
1851
|
-
"actionName",
|
|
1852
|
-
"bindings"
|
|
1853
|
-
]
|
|
1675
|
+
"required": ["assetPath", "mapName", "actionName", "bindings"]
|
|
1854
1676
|
}
|
|
1855
1677
|
},
|
|
1856
1678
|
{
|
|
@@ -1880,11 +1702,7 @@
|
|
|
1880
1702
|
"description": "Path of the binding to remove (alternative to bindingIndex)"
|
|
1881
1703
|
}
|
|
1882
1704
|
},
|
|
1883
|
-
"required": [
|
|
1884
|
-
"assetPath",
|
|
1885
|
-
"mapName",
|
|
1886
|
-
"actionName"
|
|
1887
|
-
]
|
|
1705
|
+
"required": ["assetPath", "mapName", "actionName"]
|
|
1888
1706
|
}
|
|
1889
1707
|
},
|
|
1890
1708
|
{
|
|
@@ -1906,11 +1724,7 @@
|
|
|
1906
1724
|
"description": "Name of the Action"
|
|
1907
1725
|
}
|
|
1908
1726
|
},
|
|
1909
|
-
"required": [
|
|
1910
|
-
"assetPath",
|
|
1911
|
-
"mapName",
|
|
1912
|
-
"actionName"
|
|
1913
|
-
]
|
|
1727
|
+
"required": ["assetPath", "mapName", "actionName"]
|
|
1914
1728
|
}
|
|
1915
1729
|
},
|
|
1916
1730
|
{
|
|
@@ -1926,11 +1740,7 @@
|
|
|
1926
1740
|
"operation": {
|
|
1927
1741
|
"type": "string",
|
|
1928
1742
|
"description": "Operation to perform",
|
|
1929
|
-
"enum": [
|
|
1930
|
-
"add",
|
|
1931
|
-
"remove",
|
|
1932
|
-
"modify"
|
|
1933
|
-
]
|
|
1743
|
+
"enum": ["add", "remove", "modify"]
|
|
1934
1744
|
},
|
|
1935
1745
|
"schemeName": {
|
|
1936
1746
|
"type": "string",
|
|
@@ -1944,10 +1754,7 @@
|
|
|
1944
1754
|
}
|
|
1945
1755
|
}
|
|
1946
1756
|
},
|
|
1947
|
-
"required": [
|
|
1948
|
-
"assetPath",
|
|
1949
|
-
"operation"
|
|
1950
|
-
]
|
|
1757
|
+
"required": ["assetPath", "operation"]
|
|
1951
1758
|
}
|
|
1952
1759
|
},
|
|
1953
1760
|
{
|
|
@@ -1958,12 +1765,7 @@
|
|
|
1958
1765
|
"properties": {
|
|
1959
1766
|
"action": {
|
|
1960
1767
|
"type": "string",
|
|
1961
|
-
"enum": [
|
|
1962
|
-
"button",
|
|
1963
|
-
"stick",
|
|
1964
|
-
"trigger",
|
|
1965
|
-
"dpad"
|
|
1966
|
-
],
|
|
1768
|
+
"enum": ["button", "stick", "trigger", "dpad"],
|
|
1967
1769
|
"description": "The gamepad action to perform"
|
|
1968
1770
|
},
|
|
1969
1771
|
"button": {
|
|
@@ -1972,18 +1774,12 @@
|
|
|
1972
1774
|
},
|
|
1973
1775
|
"buttonAction": {
|
|
1974
1776
|
"type": "string",
|
|
1975
|
-
"enum": [
|
|
1976
|
-
"press",
|
|
1977
|
-
"release"
|
|
1978
|
-
],
|
|
1777
|
+
"enum": ["press", "release"],
|
|
1979
1778
|
"description": "Button action (press or release)"
|
|
1980
1779
|
},
|
|
1981
1780
|
"stick": {
|
|
1982
1781
|
"type": "string",
|
|
1983
|
-
"enum": [
|
|
1984
|
-
"left",
|
|
1985
|
-
"right"
|
|
1986
|
-
],
|
|
1782
|
+
"enum": ["left", "right"],
|
|
1987
1783
|
"description": "Which analog stick to control"
|
|
1988
1784
|
},
|
|
1989
1785
|
"x": {
|
|
@@ -2000,10 +1796,7 @@
|
|
|
2000
1796
|
},
|
|
2001
1797
|
"trigger": {
|
|
2002
1798
|
"type": "string",
|
|
2003
|
-
"enum": [
|
|
2004
|
-
"left",
|
|
2005
|
-
"right"
|
|
2006
|
-
],
|
|
1799
|
+
"enum": ["left", "right"],
|
|
2007
1800
|
"description": "Which trigger to control"
|
|
2008
1801
|
},
|
|
2009
1802
|
"value": {
|
|
@@ -2014,13 +1807,7 @@
|
|
|
2014
1807
|
},
|
|
2015
1808
|
"direction": {
|
|
2016
1809
|
"type": "string",
|
|
2017
|
-
"enum": [
|
|
2018
|
-
"up",
|
|
2019
|
-
"down",
|
|
2020
|
-
"left",
|
|
2021
|
-
"right",
|
|
2022
|
-
"none"
|
|
2023
|
-
],
|
|
1810
|
+
"enum": ["up", "down", "left", "right", "none"],
|
|
2024
1811
|
"description": "D-pad direction"
|
|
2025
1812
|
},
|
|
2026
1813
|
"holdSeconds": {
|
|
@@ -2036,12 +1823,7 @@
|
|
|
2036
1823
|
"properties": {
|
|
2037
1824
|
"action": {
|
|
2038
1825
|
"type": "string",
|
|
2039
|
-
"enum": [
|
|
2040
|
-
"button",
|
|
2041
|
-
"stick",
|
|
2042
|
-
"trigger",
|
|
2043
|
-
"dpad"
|
|
2044
|
-
],
|
|
1826
|
+
"enum": ["button", "stick", "trigger", "dpad"],
|
|
2045
1827
|
"description": "The gamepad action to perform"
|
|
2046
1828
|
},
|
|
2047
1829
|
"button": {
|
|
@@ -2050,18 +1832,12 @@
|
|
|
2050
1832
|
},
|
|
2051
1833
|
"buttonAction": {
|
|
2052
1834
|
"type": "string",
|
|
2053
|
-
"enum": [
|
|
2054
|
-
"press",
|
|
2055
|
-
"release"
|
|
2056
|
-
],
|
|
1835
|
+
"enum": ["press", "release"],
|
|
2057
1836
|
"description": "Button action (press or release)"
|
|
2058
1837
|
},
|
|
2059
1838
|
"stick": {
|
|
2060
1839
|
"type": "string",
|
|
2061
|
-
"enum": [
|
|
2062
|
-
"left",
|
|
2063
|
-
"right"
|
|
2064
|
-
],
|
|
1840
|
+
"enum": ["left", "right"],
|
|
2065
1841
|
"description": "Which analog stick to control"
|
|
2066
1842
|
},
|
|
2067
1843
|
"x": {
|
|
@@ -2078,10 +1854,7 @@
|
|
|
2078
1854
|
},
|
|
2079
1855
|
"trigger": {
|
|
2080
1856
|
"type": "string",
|
|
2081
|
-
"enum": [
|
|
2082
|
-
"left",
|
|
2083
|
-
"right"
|
|
2084
|
-
],
|
|
1857
|
+
"enum": ["left", "right"],
|
|
2085
1858
|
"description": "Which trigger to control"
|
|
2086
1859
|
},
|
|
2087
1860
|
"value": {
|
|
@@ -2092,13 +1865,7 @@
|
|
|
2092
1865
|
},
|
|
2093
1866
|
"direction": {
|
|
2094
1867
|
"type": "string",
|
|
2095
|
-
"enum": [
|
|
2096
|
-
"up",
|
|
2097
|
-
"down",
|
|
2098
|
-
"left",
|
|
2099
|
-
"right",
|
|
2100
|
-
"none"
|
|
2101
|
-
],
|
|
1868
|
+
"enum": ["up", "down", "left", "right", "none"],
|
|
2102
1869
|
"description": "D-pad direction"
|
|
2103
1870
|
},
|
|
2104
1871
|
"holdSeconds": {
|
|
@@ -2107,9 +1874,7 @@
|
|
|
2107
1874
|
"description": "Automatically reset stick/button/trigger/dpad after this many seconds"
|
|
2108
1875
|
}
|
|
2109
1876
|
},
|
|
2110
|
-
"required": [
|
|
2111
|
-
"action"
|
|
2112
|
-
]
|
|
1877
|
+
"required": ["action"]
|
|
2113
1878
|
}
|
|
2114
1879
|
}
|
|
2115
1880
|
}
|
|
@@ -2123,12 +1888,7 @@
|
|
|
2123
1888
|
"properties": {
|
|
2124
1889
|
"action": {
|
|
2125
1890
|
"type": "string",
|
|
2126
|
-
"enum": [
|
|
2127
|
-
"press",
|
|
2128
|
-
"release",
|
|
2129
|
-
"type",
|
|
2130
|
-
"combo"
|
|
2131
|
-
],
|
|
1891
|
+
"enum": ["press", "release", "type", "combo"],
|
|
2132
1892
|
"description": "The keyboard action to perform"
|
|
2133
1893
|
},
|
|
2134
1894
|
"key": {
|
|
@@ -2163,12 +1923,7 @@
|
|
|
2163
1923
|
"properties": {
|
|
2164
1924
|
"action": {
|
|
2165
1925
|
"type": "string",
|
|
2166
|
-
"enum": [
|
|
2167
|
-
"press",
|
|
2168
|
-
"release",
|
|
2169
|
-
"type",
|
|
2170
|
-
"combo"
|
|
2171
|
-
],
|
|
1926
|
+
"enum": ["press", "release", "type", "combo"],
|
|
2172
1927
|
"description": "The keyboard action to perform"
|
|
2173
1928
|
},
|
|
2174
1929
|
"key": {
|
|
@@ -2196,9 +1951,7 @@
|
|
|
2196
1951
|
"description": "Automatically release after this many seconds (press/combo)"
|
|
2197
1952
|
}
|
|
2198
1953
|
},
|
|
2199
|
-
"required": [
|
|
2200
|
-
"action"
|
|
2201
|
-
]
|
|
1954
|
+
"required": ["action"]
|
|
2202
1955
|
}
|
|
2203
1956
|
}
|
|
2204
1957
|
}
|
|
@@ -2212,13 +1965,7 @@
|
|
|
2212
1965
|
"properties": {
|
|
2213
1966
|
"action": {
|
|
2214
1967
|
"type": "string",
|
|
2215
|
-
"enum": [
|
|
2216
|
-
"move",
|
|
2217
|
-
"click",
|
|
2218
|
-
"drag",
|
|
2219
|
-
"scroll",
|
|
2220
|
-
"button"
|
|
2221
|
-
],
|
|
1968
|
+
"enum": ["move", "click", "drag", "scroll", "button"],
|
|
2222
1969
|
"description": "The mouse action to perform"
|
|
2223
1970
|
},
|
|
2224
1971
|
"x": {
|
|
@@ -2235,19 +1982,12 @@
|
|
|
2235
1982
|
},
|
|
2236
1983
|
"button": {
|
|
2237
1984
|
"type": "string",
|
|
2238
|
-
"enum": [
|
|
2239
|
-
"left",
|
|
2240
|
-
"right",
|
|
2241
|
-
"middle"
|
|
2242
|
-
],
|
|
1985
|
+
"enum": ["left", "right", "middle"],
|
|
2243
1986
|
"description": "Mouse button for click/drag/button actions"
|
|
2244
1987
|
},
|
|
2245
1988
|
"buttonAction": {
|
|
2246
1989
|
"type": "string",
|
|
2247
|
-
"enum": [
|
|
2248
|
-
"press",
|
|
2249
|
-
"release"
|
|
2250
|
-
],
|
|
1990
|
+
"enum": ["press", "release"],
|
|
2251
1991
|
"description": "Button action for button presses"
|
|
2252
1992
|
},
|
|
2253
1993
|
"clickCount": {
|
|
@@ -2291,13 +2031,7 @@
|
|
|
2291
2031
|
"properties": {
|
|
2292
2032
|
"action": {
|
|
2293
2033
|
"type": "string",
|
|
2294
|
-
"enum": [
|
|
2295
|
-
"move",
|
|
2296
|
-
"click",
|
|
2297
|
-
"drag",
|
|
2298
|
-
"scroll",
|
|
2299
|
-
"button"
|
|
2300
|
-
],
|
|
2034
|
+
"enum": ["move", "click", "drag", "scroll", "button"],
|
|
2301
2035
|
"description": "The mouse action to perform"
|
|
2302
2036
|
},
|
|
2303
2037
|
"x": {
|
|
@@ -2314,19 +2048,12 @@
|
|
|
2314
2048
|
},
|
|
2315
2049
|
"button": {
|
|
2316
2050
|
"type": "string",
|
|
2317
|
-
"enum": [
|
|
2318
|
-
"left",
|
|
2319
|
-
"right",
|
|
2320
|
-
"middle"
|
|
2321
|
-
],
|
|
2051
|
+
"enum": ["left", "right", "middle"],
|
|
2322
2052
|
"description": "Mouse button for click/drag/button actions"
|
|
2323
2053
|
},
|
|
2324
2054
|
"buttonAction": {
|
|
2325
2055
|
"type": "string",
|
|
2326
|
-
"enum": [
|
|
2327
|
-
"press",
|
|
2328
|
-
"release"
|
|
2329
|
-
],
|
|
2056
|
+
"enum": ["press", "release"],
|
|
2330
2057
|
"description": "Button action for button presses"
|
|
2331
2058
|
},
|
|
2332
2059
|
"clickCount": {
|
|
@@ -2363,9 +2090,7 @@
|
|
|
2363
2090
|
"description": "Automatically release button after this many seconds"
|
|
2364
2091
|
}
|
|
2365
2092
|
},
|
|
2366
|
-
"required": [
|
|
2367
|
-
"action"
|
|
2368
|
-
]
|
|
2093
|
+
"required": ["action"]
|
|
2369
2094
|
}
|
|
2370
2095
|
}
|
|
2371
2096
|
}
|
|
@@ -2379,14 +2104,7 @@
|
|
|
2379
2104
|
"properties": {
|
|
2380
2105
|
"operation": {
|
|
2381
2106
|
"type": "string",
|
|
2382
|
-
"enum": [
|
|
2383
|
-
"keyboard",
|
|
2384
|
-
"mouse",
|
|
2385
|
-
"gamepad",
|
|
2386
|
-
"touch",
|
|
2387
|
-
"sequence",
|
|
2388
|
-
"get_state"
|
|
2389
|
-
],
|
|
2107
|
+
"enum": ["keyboard", "mouse", "gamepad", "touch", "sequence", "get_state"],
|
|
2390
2108
|
"description": "The input operation to perform"
|
|
2391
2109
|
},
|
|
2392
2110
|
"parameters": {
|
|
@@ -2394,9 +2112,7 @@
|
|
|
2394
2112
|
"description": "Parameters for the specific operation"
|
|
2395
2113
|
}
|
|
2396
2114
|
},
|
|
2397
|
-
"required": [
|
|
2398
|
-
"operation"
|
|
2399
|
-
]
|
|
2115
|
+
"required": ["operation"]
|
|
2400
2116
|
}
|
|
2401
2117
|
},
|
|
2402
2118
|
{
|
|
@@ -2407,12 +2123,7 @@
|
|
|
2407
2123
|
"properties": {
|
|
2408
2124
|
"action": {
|
|
2409
2125
|
"type": "string",
|
|
2410
|
-
"enum": [
|
|
2411
|
-
"tap",
|
|
2412
|
-
"swipe",
|
|
2413
|
-
"pinch",
|
|
2414
|
-
"multi"
|
|
2415
|
-
],
|
|
2126
|
+
"enum": ["tap", "swipe", "pinch", "multi"],
|
|
2416
2127
|
"description": "The touch action to perform"
|
|
2417
2128
|
},
|
|
2418
2129
|
"x": {
|
|
@@ -2479,18 +2190,10 @@
|
|
|
2479
2190
|
},
|
|
2480
2191
|
"phase": {
|
|
2481
2192
|
"type": "string",
|
|
2482
|
-
"enum": [
|
|
2483
|
-
"began",
|
|
2484
|
-
"moved",
|
|
2485
|
-
"stationary",
|
|
2486
|
-
"ended"
|
|
2487
|
-
]
|
|
2193
|
+
"enum": ["began", "moved", "stationary", "ended"]
|
|
2488
2194
|
}
|
|
2489
2195
|
},
|
|
2490
|
-
"required": [
|
|
2491
|
-
"x",
|
|
2492
|
-
"y"
|
|
2493
|
-
]
|
|
2196
|
+
"required": ["x", "y"]
|
|
2494
2197
|
}
|
|
2495
2198
|
},
|
|
2496
2199
|
"actions": {
|
|
@@ -2501,12 +2204,7 @@
|
|
|
2501
2204
|
"properties": {
|
|
2502
2205
|
"action": {
|
|
2503
2206
|
"type": "string",
|
|
2504
|
-
"enum": [
|
|
2505
|
-
"tap",
|
|
2506
|
-
"swipe",
|
|
2507
|
-
"pinch",
|
|
2508
|
-
"multi"
|
|
2509
|
-
],
|
|
2207
|
+
"enum": ["tap", "swipe", "pinch", "multi"],
|
|
2510
2208
|
"description": "The touch action to perform"
|
|
2511
2209
|
},
|
|
2512
2210
|
"x": {
|
|
@@ -2573,24 +2271,14 @@
|
|
|
2573
2271
|
},
|
|
2574
2272
|
"phase": {
|
|
2575
2273
|
"type": "string",
|
|
2576
|
-
"enum": [
|
|
2577
|
-
"began",
|
|
2578
|
-
"moved",
|
|
2579
|
-
"stationary",
|
|
2580
|
-
"ended"
|
|
2581
|
-
]
|
|
2274
|
+
"enum": ["began", "moved", "stationary", "ended"]
|
|
2582
2275
|
}
|
|
2583
2276
|
},
|
|
2584
|
-
"required": [
|
|
2585
|
-
"x",
|
|
2586
|
-
"y"
|
|
2587
|
-
]
|
|
2277
|
+
"required": ["x", "y"]
|
|
2588
2278
|
}
|
|
2589
2279
|
}
|
|
2590
2280
|
},
|
|
2591
|
-
"required": [
|
|
2592
|
-
"action"
|
|
2593
|
-
]
|
|
2281
|
+
"required": ["action"]
|
|
2594
2282
|
}
|
|
2595
2283
|
}
|
|
2596
2284
|
}
|
|
@@ -2608,10 +2296,7 @@
|
|
|
2608
2296
|
},
|
|
2609
2297
|
"action": {
|
|
2610
2298
|
"type": "string",
|
|
2611
|
-
"enum": [
|
|
2612
|
-
"execute",
|
|
2613
|
-
"get_available_menus"
|
|
2614
|
-
],
|
|
2299
|
+
"enum": ["execute", "get_available_menus"],
|
|
2615
2300
|
"description": "Action to perform: execute menu item or get available menus (default: execute)"
|
|
2616
2301
|
},
|
|
2617
2302
|
"alias": {
|
|
@@ -2627,9 +2312,7 @@
|
|
|
2627
2312
|
"description": "Enable safety checks to prevent execution of dangerous menu items (default: true)"
|
|
2628
2313
|
}
|
|
2629
2314
|
},
|
|
2630
|
-
"required": [
|
|
2631
|
-
"menuPath"
|
|
2632
|
-
]
|
|
2315
|
+
"required": ["menuPath"]
|
|
2633
2316
|
}
|
|
2634
2317
|
},
|
|
2635
2318
|
{
|
|
@@ -2640,14 +2323,7 @@
|
|
|
2640
2323
|
"properties": {
|
|
2641
2324
|
"action": {
|
|
2642
2325
|
"type": "string",
|
|
2643
|
-
"enum": [
|
|
2644
|
-
"search",
|
|
2645
|
-
"list",
|
|
2646
|
-
"install",
|
|
2647
|
-
"remove",
|
|
2648
|
-
"info",
|
|
2649
|
-
"recommend"
|
|
2650
|
-
],
|
|
2326
|
+
"enum": ["search", "list", "install", "remove", "info", "recommend"],
|
|
2651
2327
|
"description": "The package operation to perform"
|
|
2652
2328
|
},
|
|
2653
2329
|
"keyword": {
|
|
@@ -2668,13 +2344,7 @@
|
|
|
2668
2344
|
},
|
|
2669
2345
|
"category": {
|
|
2670
2346
|
"type": "string",
|
|
2671
|
-
"enum": [
|
|
2672
|
-
"essential",
|
|
2673
|
-
"rendering",
|
|
2674
|
-
"tools",
|
|
2675
|
-
"networking",
|
|
2676
|
-
"mobile"
|
|
2677
|
-
],
|
|
2347
|
+
"enum": ["essential", "rendering", "tools", "networking", "mobile"],
|
|
2678
2348
|
"description": "Category for recommendations"
|
|
2679
2349
|
},
|
|
2680
2350
|
"includeBuiltIn": {
|
|
@@ -2686,9 +2356,7 @@
|
|
|
2686
2356
|
"description": "Maximum number of search results (default: 20)"
|
|
2687
2357
|
}
|
|
2688
2358
|
},
|
|
2689
|
-
"required": [
|
|
2690
|
-
"action"
|
|
2691
|
-
]
|
|
2359
|
+
"required": ["action"]
|
|
2692
2360
|
}
|
|
2693
2361
|
},
|
|
2694
2362
|
{
|
|
@@ -2699,14 +2367,7 @@
|
|
|
2699
2367
|
"properties": {
|
|
2700
2368
|
"action": {
|
|
2701
2369
|
"type": "string",
|
|
2702
|
-
"enum": [
|
|
2703
|
-
"list",
|
|
2704
|
-
"add_openupm",
|
|
2705
|
-
"add_nuget",
|
|
2706
|
-
"remove",
|
|
2707
|
-
"add_scope",
|
|
2708
|
-
"recommend"
|
|
2709
|
-
],
|
|
2370
|
+
"enum": ["list", "add_openupm", "add_nuget", "remove", "add_scope", "recommend"],
|
|
2710
2371
|
"description": "The registry operation to perform"
|
|
2711
2372
|
},
|
|
2712
2373
|
"registryName": {
|
|
@@ -2730,16 +2391,11 @@
|
|
|
2730
2391
|
},
|
|
2731
2392
|
"registry": {
|
|
2732
2393
|
"type": "string",
|
|
2733
|
-
"enum": [
|
|
2734
|
-
"openupm",
|
|
2735
|
-
"nuget"
|
|
2736
|
-
],
|
|
2394
|
+
"enum": ["openupm", "nuget"],
|
|
2737
2395
|
"description": "Registry type for recommendations"
|
|
2738
2396
|
}
|
|
2739
2397
|
},
|
|
2740
|
-
"required": [
|
|
2741
|
-
"action"
|
|
2742
|
-
]
|
|
2398
|
+
"required": ["action"]
|
|
2743
2399
|
}
|
|
2744
2400
|
},
|
|
2745
2401
|
{
|
|
@@ -2755,9 +2411,7 @@
|
|
|
2755
2411
|
"type": "boolean"
|
|
2756
2412
|
}
|
|
2757
2413
|
},
|
|
2758
|
-
"required": [
|
|
2759
|
-
"isPlaying"
|
|
2760
|
-
]
|
|
2414
|
+
"required": ["isPlaying"]
|
|
2761
2415
|
},
|
|
2762
2416
|
"timeoutMs": {
|
|
2763
2417
|
"type": "number"
|
|
@@ -2811,9 +2465,7 @@
|
|
|
2811
2465
|
"description": "Polling interval in ms (default 500)"
|
|
2812
2466
|
}
|
|
2813
2467
|
},
|
|
2814
|
-
"required": [
|
|
2815
|
-
"isPlaying"
|
|
2816
|
-
]
|
|
2468
|
+
"required": ["isPlaying"]
|
|
2817
2469
|
}
|
|
2818
2470
|
},
|
|
2819
2471
|
{
|
|
@@ -2845,10 +2497,7 @@
|
|
|
2845
2497
|
"properties": {
|
|
2846
2498
|
"mode": {
|
|
2847
2499
|
"type": "string",
|
|
2848
|
-
"enum": [
|
|
2849
|
-
"normal",
|
|
2850
|
-
"deep"
|
|
2851
|
-
],
|
|
2500
|
+
"enum": ["normal", "deep"],
|
|
2852
2501
|
"default": "normal",
|
|
2853
2502
|
"description": "Profiling mode. 'normal' for standard profiling, 'deep' for deep profiling (more detailed but higher overhead)"
|
|
2854
2503
|
},
|
|
@@ -2916,9 +2565,7 @@
|
|
|
2916
2565
|
"description": "Whether to add the scene to build settings (default: false)"
|
|
2917
2566
|
}
|
|
2918
2567
|
},
|
|
2919
|
-
"required": [
|
|
2920
|
-
"sceneName"
|
|
2921
|
-
]
|
|
2568
|
+
"required": ["sceneName"]
|
|
2922
2569
|
}
|
|
2923
2570
|
},
|
|
2924
2571
|
{
|
|
@@ -2979,10 +2626,7 @@
|
|
|
2979
2626
|
},
|
|
2980
2627
|
"loadMode": {
|
|
2981
2628
|
"type": "string",
|
|
2982
|
-
"enum": [
|
|
2983
|
-
"Single",
|
|
2984
|
-
"Additive"
|
|
2985
|
-
],
|
|
2629
|
+
"enum": ["Single", "Additive"],
|
|
2986
2630
|
"description": "How to load the scene. Single replaces current scene(s), Additive adds to current scene(s) (default: Single)"
|
|
2987
2631
|
}
|
|
2988
2632
|
}
|
|
@@ -3021,12 +2665,7 @@
|
|
|
3021
2665
|
},
|
|
3022
2666
|
"analysisType": {
|
|
3023
2667
|
"type": "string",
|
|
3024
|
-
"enum": [
|
|
3025
|
-
"basic",
|
|
3026
|
-
"ui",
|
|
3027
|
-
"content",
|
|
3028
|
-
"full"
|
|
3029
|
-
],
|
|
2668
|
+
"enum": ["basic", "ui", "content", "full"],
|
|
3030
2669
|
"description": "Type of analysis: basic (colors, dimensions), ui (UI element detection), content (scene content), full (all)"
|
|
3031
2670
|
},
|
|
3032
2671
|
"prompt": {
|
|
@@ -3044,12 +2683,7 @@
|
|
|
3044
2683
|
"properties": {
|
|
3045
2684
|
"captureMode": {
|
|
3046
2685
|
"type": "string",
|
|
3047
|
-
"enum": [
|
|
3048
|
-
"game",
|
|
3049
|
-
"scene",
|
|
3050
|
-
"window",
|
|
3051
|
-
"explorer"
|
|
3052
|
-
],
|
|
2686
|
+
"enum": ["game", "scene", "window", "explorer"],
|
|
3053
2687
|
"description": "Capture mode selection:\n- \"game\": Game View (player's perspective, what the user sees)\n- \"scene\": Scene View (editor's 3D workspace view)\n- \"explorer\": AI/LLM exploration mode (optimized view for understanding scene content)\n- \"window\": Specific Unity Editor window by name"
|
|
3054
2688
|
},
|
|
3055
2689
|
"width": {
|
|
@@ -3082,12 +2716,7 @@
|
|
|
3082
2716
|
"properties": {
|
|
3083
2717
|
"type": {
|
|
3084
2718
|
"type": "string",
|
|
3085
|
-
"enum": [
|
|
3086
|
-
"gameObject",
|
|
3087
|
-
"tag",
|
|
3088
|
-
"area",
|
|
3089
|
-
"position"
|
|
3090
|
-
],
|
|
2719
|
+
"enum": ["gameObject", "tag", "area", "position"],
|
|
3091
2720
|
"description": "Target selection method:\n- \"gameObject\": Focus on a specific GameObject by name\n- \"tag\": Focus on all objects with a specific tag\n- \"area\": Focus on a circular area defined by center and radius\n- \"position\": Manual camera positioning without auto-framing"
|
|
3092
2721
|
},
|
|
3093
2722
|
"name": {
|
|
@@ -3323,10 +2952,7 @@
|
|
|
3323
2952
|
"description": "Apply immediately (default: false)"
|
|
3324
2953
|
}
|
|
3325
2954
|
},
|
|
3326
|
-
"required": [
|
|
3327
|
-
"path",
|
|
3328
|
-
"className"
|
|
3329
|
-
]
|
|
2955
|
+
"required": ["path", "className"]
|
|
3330
2956
|
}
|
|
3331
2957
|
},
|
|
3332
2958
|
{
|
|
@@ -3353,11 +2979,7 @@
|
|
|
3353
2979
|
"properties": {
|
|
3354
2980
|
"operation": {
|
|
3355
2981
|
"type": "string",
|
|
3356
|
-
"enum": [
|
|
3357
|
-
"delete",
|
|
3358
|
-
"replace",
|
|
3359
|
-
"insert"
|
|
3360
|
-
],
|
|
2982
|
+
"enum": ["delete", "replace", "insert"],
|
|
3361
2983
|
"description": "Edit type."
|
|
3362
2984
|
},
|
|
3363
2985
|
"anchor": {
|
|
@@ -3366,9 +2988,7 @@
|
|
|
3366
2988
|
"properties": {
|
|
3367
2989
|
"type": {
|
|
3368
2990
|
"type": "string",
|
|
3369
|
-
"enum": [
|
|
3370
|
-
"text"
|
|
3371
|
-
],
|
|
2991
|
+
"enum": ["text"],
|
|
3372
2992
|
"default": "text"
|
|
3373
2993
|
},
|
|
3374
2994
|
"target": {
|
|
@@ -3377,34 +2997,22 @@
|
|
|
3377
2997
|
},
|
|
3378
2998
|
"position": {
|
|
3379
2999
|
"type": "string",
|
|
3380
|
-
"enum": [
|
|
3381
|
-
"before",
|
|
3382
|
-
"after"
|
|
3383
|
-
],
|
|
3000
|
+
"enum": ["before", "after"],
|
|
3384
3001
|
"description": "For insert operations, whether to insert before or after the anchor text (default=after)."
|
|
3385
3002
|
}
|
|
3386
3003
|
},
|
|
3387
|
-
"required": [
|
|
3388
|
-
"type",
|
|
3389
|
-
"target"
|
|
3390
|
-
]
|
|
3004
|
+
"required": ["type", "target"]
|
|
3391
3005
|
},
|
|
3392
3006
|
"newText": {
|
|
3393
3007
|
"type": "string",
|
|
3394
3008
|
"description": "Replacement or insertion text. Required for replace/insert."
|
|
3395
3009
|
}
|
|
3396
3010
|
},
|
|
3397
|
-
"required": [
|
|
3398
|
-
"operation",
|
|
3399
|
-
"anchor"
|
|
3400
|
-
]
|
|
3011
|
+
"required": ["operation", "anchor"]
|
|
3401
3012
|
}
|
|
3402
3013
|
}
|
|
3403
3014
|
},
|
|
3404
|
-
"required": [
|
|
3405
|
-
"path",
|
|
3406
|
-
"instructions"
|
|
3407
|
-
]
|
|
3015
|
+
"required": ["path", "instructions"]
|
|
3408
3016
|
}
|
|
3409
3017
|
},
|
|
3410
3018
|
{
|
|
@@ -3415,11 +3023,7 @@
|
|
|
3415
3023
|
"properties": {
|
|
3416
3024
|
"operation": {
|
|
3417
3025
|
"type": "string",
|
|
3418
|
-
"enum": [
|
|
3419
|
-
"insert_before",
|
|
3420
|
-
"insert_after",
|
|
3421
|
-
"replace_body"
|
|
3422
|
-
],
|
|
3026
|
+
"enum": ["insert_before", "insert_after", "replace_body"],
|
|
3423
3027
|
"description": "Edit type: insert_before, insert_after, or replace_body."
|
|
3424
3028
|
},
|
|
3425
3029
|
"path": {
|
|
@@ -3443,11 +3047,7 @@
|
|
|
3443
3047
|
"description": "If true, returns a preview without writing files. Default=false to reduce large diff payloads."
|
|
3444
3048
|
}
|
|
3445
3049
|
},
|
|
3446
|
-
"required": [
|
|
3447
|
-
"operation",
|
|
3448
|
-
"path",
|
|
3449
|
-
"symbolName"
|
|
3450
|
-
]
|
|
3050
|
+
"required": ["operation", "path", "symbolName"]
|
|
3451
3051
|
}
|
|
3452
3052
|
},
|
|
3453
3053
|
{
|
|
@@ -3486,9 +3086,7 @@
|
|
|
3486
3086
|
"description": "Maximum bytes to return to cap payload size for LLMs."
|
|
3487
3087
|
}
|
|
3488
3088
|
},
|
|
3489
|
-
"required": [
|
|
3490
|
-
"path"
|
|
3491
|
-
]
|
|
3089
|
+
"required": ["path"]
|
|
3492
3090
|
}
|
|
3493
3091
|
},
|
|
3494
3092
|
{
|
|
@@ -3514,11 +3112,7 @@
|
|
|
3514
3112
|
"description": "Preview changes before applying (default: true)"
|
|
3515
3113
|
}
|
|
3516
3114
|
},
|
|
3517
|
-
"required": [
|
|
3518
|
-
"relative",
|
|
3519
|
-
"namePath",
|
|
3520
|
-
"newName"
|
|
3521
|
-
]
|
|
3115
|
+
"required": ["relative", "namePath", "newName"]
|
|
3522
3116
|
}
|
|
3523
3117
|
},
|
|
3524
3118
|
{
|
|
@@ -3531,14 +3125,13 @@
|
|
|
3531
3125
|
"type": "string",
|
|
3532
3126
|
"description": "Symbol name to search usages for."
|
|
3533
3127
|
},
|
|
3128
|
+
"startAfter": {
|
|
3129
|
+
"type": "string",
|
|
3130
|
+
"description": "Pagination cursor (file path). Return only results after this path."
|
|
3131
|
+
},
|
|
3534
3132
|
"scope": {
|
|
3535
3133
|
"type": "string",
|
|
3536
|
-
"enum": [
|
|
3537
|
-
"assets",
|
|
3538
|
-
"packages",
|
|
3539
|
-
"embedded",
|
|
3540
|
-
"all"
|
|
3541
|
-
],
|
|
3134
|
+
"enum": ["assets", "packages", "embedded", "all"],
|
|
3542
3135
|
"description": "Search scope: assets (Assets/), packages (Packages/), embedded, or all (default: all)."
|
|
3543
3136
|
},
|
|
3544
3137
|
"snippetContext": {
|
|
@@ -3574,9 +3167,7 @@
|
|
|
3574
3167
|
"description": "Optional: symbol kind (class, method, field, property)."
|
|
3575
3168
|
}
|
|
3576
3169
|
},
|
|
3577
|
-
"required": [
|
|
3578
|
-
"name"
|
|
3579
|
-
]
|
|
3170
|
+
"required": ["name"]
|
|
3580
3171
|
}
|
|
3581
3172
|
},
|
|
3582
3173
|
{
|
|
@@ -3606,10 +3197,7 @@
|
|
|
3606
3197
|
"description": "Remove file if it becomes empty (default: false)"
|
|
3607
3198
|
}
|
|
3608
3199
|
},
|
|
3609
|
-
"required": [
|
|
3610
|
-
"path",
|
|
3611
|
-
"namePath"
|
|
3612
|
-
]
|
|
3200
|
+
"required": ["path", "namePath"]
|
|
3613
3201
|
}
|
|
3614
3202
|
},
|
|
3615
3203
|
{
|
|
@@ -3624,11 +3212,7 @@
|
|
|
3624
3212
|
},
|
|
3625
3213
|
"patternType": {
|
|
3626
3214
|
"type": "string",
|
|
3627
|
-
"enum": [
|
|
3628
|
-
"substring",
|
|
3629
|
-
"regex",
|
|
3630
|
-
"glob"
|
|
3631
|
-
],
|
|
3215
|
+
"enum": ["substring", "regex", "glob"],
|
|
3632
3216
|
"description": "Pattern matching strategy: substring (default), regex, or glob-only scan."
|
|
3633
3217
|
},
|
|
3634
3218
|
"flags": {
|
|
@@ -3640,12 +3224,7 @@
|
|
|
3640
3224
|
},
|
|
3641
3225
|
"scope": {
|
|
3642
3226
|
"type": "string",
|
|
3643
|
-
"enum": [
|
|
3644
|
-
"assets",
|
|
3645
|
-
"packages",
|
|
3646
|
-
"embedded",
|
|
3647
|
-
"all"
|
|
3648
|
-
],
|
|
3227
|
+
"enum": ["assets", "packages", "embedded", "all"],
|
|
3649
3228
|
"description": "Search scope: assets (Assets/, default), packages (Packages/), embedded, or all."
|
|
3650
3229
|
},
|
|
3651
3230
|
"include": {
|
|
@@ -3674,21 +3253,12 @@
|
|
|
3674
3253
|
},
|
|
3675
3254
|
"returnMode": {
|
|
3676
3255
|
"type": "string",
|
|
3677
|
-
"enum": [
|
|
3678
|
-
"metadata",
|
|
3679
|
-
"snippets",
|
|
3680
|
-
"full"
|
|
3681
|
-
],
|
|
3256
|
+
"enum": ["metadata", "snippets", "full"],
|
|
3682
3257
|
"description": "Result detail: metadata (fast), snippets (recommended), or full."
|
|
3683
3258
|
},
|
|
3684
3259
|
"detail": {
|
|
3685
3260
|
"type": "string",
|
|
3686
|
-
"enum": [
|
|
3687
|
-
"compact",
|
|
3688
|
-
"metadata",
|
|
3689
|
-
"snippets",
|
|
3690
|
-
"full"
|
|
3691
|
-
],
|
|
3261
|
+
"enum": ["compact", "metadata", "snippets", "full"],
|
|
3692
3262
|
"description": "Alias of returnMode. `compact` maps to `snippets`."
|
|
3693
3263
|
},
|
|
3694
3264
|
"startAfter": {
|
|
@@ -3734,12 +3304,7 @@
|
|
|
3734
3304
|
},
|
|
3735
3305
|
"scope": {
|
|
3736
3306
|
"type": "string",
|
|
3737
|
-
"enum": [
|
|
3738
|
-
"assets",
|
|
3739
|
-
"packages",
|
|
3740
|
-
"embedded",
|
|
3741
|
-
"all"
|
|
3742
|
-
],
|
|
3307
|
+
"enum": ["assets", "packages", "embedded", "all"],
|
|
3743
3308
|
"description": "Search scope: assets (Assets/), packages (Packages/), embedded, or all (default: all)."
|
|
3744
3309
|
},
|
|
3745
3310
|
"exact": {
|
|
@@ -3747,9 +3312,7 @@
|
|
|
3747
3312
|
"description": "If true, match name exactly; otherwise allows partial matches (default: false)."
|
|
3748
3313
|
}
|
|
3749
3314
|
},
|
|
3750
|
-
"required": [
|
|
3751
|
-
"name"
|
|
3752
|
-
]
|
|
3315
|
+
"required": ["name"]
|
|
3753
3316
|
}
|
|
3754
3317
|
},
|
|
3755
3318
|
{
|
|
@@ -3763,9 +3326,7 @@
|
|
|
3763
3326
|
"description": "Project-relative .cs path under Assets/ or Packages/ (e.g., Packages/unity-mcp-server/Editor/Foo.cs). Do NOT prefix repository folders (e.g., UnityMCPServer/…)."
|
|
3764
3327
|
}
|
|
3765
3328
|
},
|
|
3766
|
-
"required": [
|
|
3767
|
-
"path"
|
|
3768
|
-
]
|
|
3329
|
+
"required": ["path"]
|
|
3769
3330
|
}
|
|
3770
3331
|
},
|
|
3771
3332
|
{
|
|
@@ -3791,11 +3352,7 @@
|
|
|
3791
3352
|
},
|
|
3792
3353
|
"scope": {
|
|
3793
3354
|
"type": "string",
|
|
3794
|
-
"enum": [
|
|
3795
|
-
"read",
|
|
3796
|
-
"write",
|
|
3797
|
-
"execute"
|
|
3798
|
-
],
|
|
3355
|
+
"enum": ["read", "write", "execute"],
|
|
3799
3356
|
"description": "Filter by scope: read, write, or execute"
|
|
3800
3357
|
},
|
|
3801
3358
|
"limit": {
|
|
@@ -3910,10 +3467,7 @@
|
|
|
3910
3467
|
"properties": {
|
|
3911
3468
|
"colorSpace": {
|
|
3912
3469
|
"type": "string",
|
|
3913
|
-
"enum": [
|
|
3914
|
-
"Gamma",
|
|
3915
|
-
"Linear"
|
|
3916
|
-
],
|
|
3470
|
+
"enum": ["Gamma", "Linear"],
|
|
3917
3471
|
"description": "Color space (requires Unity restart)"
|
|
3918
3472
|
}
|
|
3919
3473
|
}
|
|
@@ -4026,12 +3580,7 @@
|
|
|
4026
3580
|
},
|
|
4027
3581
|
"antiAliasing": {
|
|
4028
3582
|
"type": "number",
|
|
4029
|
-
"enum": [
|
|
4030
|
-
0,
|
|
4031
|
-
2,
|
|
4032
|
-
4,
|
|
4033
|
-
8
|
|
4034
|
-
],
|
|
3583
|
+
"enum": [0, 2, 4, 8],
|
|
4035
3584
|
"description": "Anti-aliasing samples"
|
|
4036
3585
|
},
|
|
4037
3586
|
"shadowDistance": {
|
|
@@ -4042,9 +3591,7 @@
|
|
|
4042
3591
|
}
|
|
4043
3592
|
}
|
|
4044
3593
|
},
|
|
4045
|
-
"required": [
|
|
4046
|
-
"confirmChanges"
|
|
4047
|
-
]
|
|
3594
|
+
"required": ["confirmChanges"]
|
|
4048
3595
|
}
|
|
4049
3596
|
},
|
|
4050
3597
|
{
|
|
@@ -4103,11 +3650,7 @@
|
|
|
4103
3650
|
"properties": {
|
|
4104
3651
|
"testMode": {
|
|
4105
3652
|
"type": "string",
|
|
4106
|
-
"enum": [
|
|
4107
|
-
"EditMode",
|
|
4108
|
-
"PlayMode",
|
|
4109
|
-
"All"
|
|
4110
|
-
],
|
|
3653
|
+
"enum": ["EditMode", "PlayMode", "All"],
|
|
4111
3654
|
"default": "EditMode",
|
|
4112
3655
|
"description": "Test mode to run (EditMode: editor tests, PlayMode: runtime tests, All: both)"
|
|
4113
3656
|
},
|
|
@@ -4147,11 +3690,7 @@
|
|
|
4147
3690
|
},
|
|
4148
3691
|
"clickType": {
|
|
4149
3692
|
"type": "string",
|
|
4150
|
-
"enum": [
|
|
4151
|
-
"left",
|
|
4152
|
-
"right",
|
|
4153
|
-
"middle"
|
|
4154
|
-
],
|
|
3693
|
+
"enum": ["left", "right", "middle"],
|
|
4155
3694
|
"description": "Type of click (left, right, middle)"
|
|
4156
3695
|
},
|
|
4157
3696
|
"holdDuration": {
|
|
@@ -4179,9 +3718,7 @@
|
|
|
4179
3718
|
"description": "Specific position within element to click"
|
|
4180
3719
|
}
|
|
4181
3720
|
},
|
|
4182
|
-
"required": [
|
|
4183
|
-
"elementPath"
|
|
4184
|
-
]
|
|
3721
|
+
"required": ["elementPath"]
|
|
4185
3722
|
}
|
|
4186
3723
|
},
|
|
4187
3724
|
{
|
|
@@ -4232,9 +3769,7 @@
|
|
|
4232
3769
|
"description": "Include interaction capabilities (default: true)"
|
|
4233
3770
|
}
|
|
4234
3771
|
},
|
|
4235
|
-
"required": [
|
|
4236
|
-
"elementPath"
|
|
4237
|
-
]
|
|
3772
|
+
"required": ["elementPath"]
|
|
4238
3773
|
}
|
|
4239
3774
|
},
|
|
4240
3775
|
{
|
|
@@ -4275,10 +3810,7 @@
|
|
|
4275
3810
|
"description": "Whether to trigger associated events (default: true)"
|
|
4276
3811
|
}
|
|
4277
3812
|
},
|
|
4278
|
-
"required": [
|
|
4279
|
-
"elementPath",
|
|
4280
|
-
"value"
|
|
4281
|
-
]
|
|
3813
|
+
"required": ["elementPath", "value"]
|
|
4282
3814
|
}
|
|
4283
3815
|
},
|
|
4284
3816
|
{
|
|
@@ -4293,14 +3825,7 @@
|
|
|
4293
3825
|
},
|
|
4294
3826
|
"inputType": {
|
|
4295
3827
|
"type": "string",
|
|
4296
|
-
"enum": [
|
|
4297
|
-
"click",
|
|
4298
|
-
"doubleclick",
|
|
4299
|
-
"rightclick",
|
|
4300
|
-
"hover",
|
|
4301
|
-
"focus",
|
|
4302
|
-
"type"
|
|
4303
|
-
],
|
|
3828
|
+
"enum": ["click", "doubleclick", "rightclick", "hover", "focus", "type"],
|
|
4304
3829
|
"description": "Type of input to simulate (for simple input)"
|
|
4305
3830
|
},
|
|
4306
3831
|
"inputData": {
|
|
@@ -4321,10 +3846,7 @@
|
|
|
4321
3846
|
"description": "Parameters for the action"
|
|
4322
3847
|
}
|
|
4323
3848
|
},
|
|
4324
|
-
"required": [
|
|
4325
|
-
"type",
|
|
4326
|
-
"params"
|
|
4327
|
-
]
|
|
3849
|
+
"required": ["type", "params"]
|
|
4328
3850
|
},
|
|
4329
3851
|
"description": "Array of input actions to perform (for complex input)"
|
|
4330
3852
|
},
|
|
@@ -4349,9 +3871,7 @@
|
|
|
4349
3871
|
"properties": {
|
|
4350
3872
|
"captureMode": {
|
|
4351
3873
|
"type": "string",
|
|
4352
|
-
"enum": [
|
|
4353
|
-
"game"
|
|
4354
|
-
],
|
|
3874
|
+
"enum": ["game"],
|
|
4355
3875
|
"description": "Capture source. Currently only \"game\" supported."
|
|
4356
3876
|
},
|
|
4357
3877
|
"width": {
|
|
@@ -4375,9 +3895,7 @@
|
|
|
4375
3895
|
"description": "Enter Play Mode before recording (default true if not already playing)"
|
|
4376
3896
|
}
|
|
4377
3897
|
},
|
|
4378
|
-
"required": [
|
|
4379
|
-
"durationSec"
|
|
4380
|
-
]
|
|
3898
|
+
"required": ["durationSec"]
|
|
4381
3899
|
}
|
|
4382
3900
|
},
|
|
4383
3901
|
{
|
|
@@ -4388,9 +3906,7 @@
|
|
|
4388
3906
|
"properties": {
|
|
4389
3907
|
"captureMode": {
|
|
4390
3908
|
"type": "string",
|
|
4391
|
-
"enum": [
|
|
4392
|
-
"game"
|
|
4393
|
-
],
|
|
3909
|
+
"enum": ["game"],
|
|
4394
3910
|
"description": "Capture source. Currently only \"game\" supported."
|
|
4395
3911
|
},
|
|
4396
3912
|
"width": {
|