unreal-engine-mcp-server 0.5.0 → 0.5.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/.env.example +1 -1
- package/.github/release-drafter-config.yml +51 -0
- package/.github/workflows/greetings.yml +5 -1
- package/.github/workflows/labeler.yml +2 -1
- package/.github/workflows/publish-mcp.yml +2 -4
- package/.github/workflows/release-drafter.yml +3 -2
- package/.github/workflows/release.yml +3 -3
- package/CHANGELOG.md +109 -0
- package/CONTRIBUTING.md +1 -1
- package/GEMINI.md +115 -0
- package/Public/Plugin_setup_guide.mp4 +0 -0
- package/README.md +166 -200
- package/dist/automation/bridge.d.ts +1 -2
- package/dist/automation/bridge.js +24 -23
- package/dist/automation/connection-manager.d.ts +1 -0
- package/dist/automation/connection-manager.js +10 -0
- package/dist/automation/message-handler.js +5 -4
- package/dist/automation/request-tracker.d.ts +4 -0
- package/dist/automation/request-tracker.js +11 -3
- package/dist/config.d.ts +0 -1
- package/dist/config.js +0 -1
- package/dist/constants.d.ts +4 -0
- package/dist/constants.js +4 -0
- package/dist/graphql/loaders.d.ts +64 -0
- package/dist/graphql/loaders.js +117 -0
- package/dist/graphql/resolvers.d.ts +3 -3
- package/dist/graphql/resolvers.js +33 -30
- package/dist/graphql/server.js +3 -1
- package/dist/graphql/types.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +13 -2
- package/dist/server-setup.d.ts +0 -1
- package/dist/server-setup.js +0 -40
- package/dist/tools/actors.d.ts +58 -24
- package/dist/tools/actors.js +22 -6
- package/dist/tools/assets.d.ts +19 -71
- package/dist/tools/assets.js +28 -22
- package/dist/tools/base-tool.d.ts +4 -4
- package/dist/tools/base-tool.js +1 -1
- package/dist/tools/blueprint.d.ts +45 -61
- package/dist/tools/blueprint.js +43 -14
- package/dist/tools/consolidated-tool-definitions.js +2 -1
- package/dist/tools/consolidated-tool-handlers.js +96 -110
- package/dist/tools/dynamic-handler-registry.d.ts +11 -9
- package/dist/tools/dynamic-handler-registry.js +17 -95
- package/dist/tools/editor.d.ts +19 -193
- package/dist/tools/editor.js +11 -2
- package/dist/tools/environment.d.ts +8 -14
- package/dist/tools/foliage.d.ts +18 -143
- package/dist/tools/foliage.js +4 -2
- package/dist/tools/handlers/actor-handlers.d.ts +1 -1
- package/dist/tools/handlers/actor-handlers.js +14 -13
- package/dist/tools/handlers/asset-handlers.js +454 -454
- package/dist/tools/handlers/sequence-handlers.d.ts +1 -1
- package/dist/tools/handlers/sequence-handlers.js +24 -13
- package/dist/tools/introspection.d.ts +1 -1
- package/dist/tools/introspection.js +1 -1
- package/dist/tools/landscape.d.ts +16 -116
- package/dist/tools/landscape.js +7 -3
- package/dist/tools/level.d.ts +22 -103
- package/dist/tools/level.js +26 -18
- package/dist/tools/lighting.d.ts +54 -7
- package/dist/tools/lighting.js +9 -5
- package/dist/tools/materials.d.ts +1 -1
- package/dist/tools/materials.js +5 -1
- package/dist/tools/niagara.js +37 -2
- package/dist/tools/performance.d.ts +0 -1
- package/dist/tools/performance.js +0 -1
- package/dist/tools/physics.js +5 -1
- package/dist/tools/sequence.d.ts +24 -24
- package/dist/tools/sequence.js +13 -0
- package/dist/tools/ui.d.ts +0 -2
- package/dist/types/automation-responses.d.ts +115 -0
- package/dist/types/automation-responses.js +2 -0
- package/dist/types/responses.d.ts +249 -0
- package/dist/types/responses.js +2 -0
- package/dist/types/tool-interfaces.d.ts +135 -135
- package/dist/types/tool-types.d.ts +2 -0
- package/dist/unreal-bridge.js +4 -4
- package/dist/utils/command-validator.js +7 -5
- package/dist/utils/error-handler.d.ts +24 -2
- package/dist/utils/error-handler.js +58 -23
- package/dist/utils/normalize.d.ts +7 -4
- package/dist/utils/normalize.js +12 -10
- package/dist/utils/path-security.d.ts +2 -0
- package/dist/utils/path-security.js +24 -0
- package/dist/utils/response-factory.d.ts +4 -4
- package/dist/utils/response-factory.js +15 -21
- package/dist/utils/response-validator.js +88 -73
- package/dist/utils/unreal-command-queue.d.ts +2 -0
- package/dist/utils/unreal-command-queue.js +8 -1
- package/docs/Migration-Guide-v0.5.0.md +1 -9
- package/docs/handler-mapping.md +4 -2
- package/docs/testing-guide.md +2 -2
- package/package.json +12 -6
- package/plugins/McpAutomationBridge/Source/McpAutomationBridge/Private/McpAutomationBridgeSubsystem.cpp +298 -33
- package/plugins/McpAutomationBridge/Source/McpAutomationBridge/Private/McpAutomationBridge_AnimationHandlers.cpp +7 -8
- package/plugins/McpAutomationBridge/Source/McpAutomationBridge/Private/McpAutomationBridge_BlueprintGraphHandlers.cpp +229 -319
- package/plugins/McpAutomationBridge/Source/McpAutomationBridge/Private/McpAutomationBridge_BlueprintHandlers.cpp +98 -0
- package/plugins/McpAutomationBridge/Source/McpAutomationBridge/Private/McpAutomationBridge_EffectHandlers.cpp +24 -0
- package/plugins/McpAutomationBridge/Source/McpAutomationBridge/Private/McpAutomationBridge_EnvironmentHandlers.cpp +96 -0
- package/plugins/McpAutomationBridge/Source/McpAutomationBridge/Private/McpAutomationBridge_LightingHandlers.cpp +52 -5
- package/plugins/McpAutomationBridge/Source/McpAutomationBridge/Private/McpAutomationBridge_ProcessRequest.cpp +5 -268
- package/plugins/McpAutomationBridge/Source/McpAutomationBridge/Private/McpAutomationBridge_SequenceHandlers.cpp +57 -2
- package/plugins/McpAutomationBridge/Source/McpAutomationBridge/Private/McpConnectionManager.cpp +0 -1
- package/scripts/run-all-tests.mjs +25 -20
- package/server.json +3 -2
- package/src/automation/bridge.ts +27 -25
- package/src/automation/connection-manager.ts +18 -0
- package/src/automation/message-handler.ts +33 -8
- package/src/automation/request-tracker.ts +39 -7
- package/src/config.ts +1 -1
- package/src/constants.ts +7 -0
- package/src/graphql/loaders.ts +244 -0
- package/src/graphql/resolvers.ts +47 -49
- package/src/graphql/server.ts +3 -1
- package/src/graphql/types.ts +3 -0
- package/src/index.ts +15 -2
- package/src/resources/assets.ts +5 -4
- package/src/server/tool-registry.ts +3 -3
- package/src/server-setup.ts +3 -37
- package/src/tools/actors.ts +77 -44
- package/src/tools/animation.ts +1 -0
- package/src/tools/assets.ts +76 -65
- package/src/tools/base-tool.ts +3 -3
- package/src/tools/blueprint.ts +170 -104
- package/src/tools/consolidated-tool-definitions.ts +2 -1
- package/src/tools/consolidated-tool-handlers.ts +129 -150
- package/src/tools/dynamic-handler-registry.ts +22 -140
- package/src/tools/editor.ts +43 -29
- package/src/tools/environment.ts +21 -27
- package/src/tools/foliage.ts +28 -25
- package/src/tools/handlers/actor-handlers.ts +16 -17
- package/src/tools/handlers/asset-handlers.ts +484 -484
- package/src/tools/handlers/sequence-handlers.ts +85 -62
- package/src/tools/introspection.ts +7 -7
- package/src/tools/landscape.ts +34 -28
- package/src/tools/level.ts +100 -80
- package/src/tools/lighting.ts +25 -20
- package/src/tools/materials.ts +9 -3
- package/src/tools/niagara.ts +44 -2
- package/src/tools/performance.ts +1 -2
- package/src/tools/physics.ts +7 -1
- package/src/tools/sequence.ts +42 -26
- package/src/tools/ui.ts +1 -3
- package/src/types/automation-responses.ts +119 -0
- package/src/types/responses.ts +355 -0
- package/src/types/tool-interfaces.ts +135 -135
- package/src/types/tool-types.ts +4 -0
- package/src/unreal-bridge.ts +71 -26
- package/src/utils/command-validator.ts +47 -5
- package/src/utils/error-handler.ts +128 -45
- package/src/utils/normalize.test.ts +162 -0
- package/src/utils/normalize.ts +38 -16
- package/src/utils/path-security.ts +43 -0
- package/src/utils/response-factory.ts +29 -24
- package/src/utils/response-validator.ts +103 -87
- package/src/utils/safe-json.test.ts +90 -0
- package/src/utils/unreal-command-queue.ts +13 -1
- package/src/utils/validation.test.ts +184 -0
- package/tests/test-animation.mjs +358 -33
- package/tests/test-asset-graph.mjs +311 -0
- package/tests/test-audio.mjs +314 -116
- package/tests/test-behavior-tree.mjs +327 -144
- package/tests/test-blueprint-graph.mjs +343 -12
- package/tests/test-control-editor.mjs +85 -53
- package/tests/test-graphql.mjs +58 -8
- package/tests/test-input.mjs +349 -0
- package/tests/test-inspect.mjs +291 -61
- package/tests/test-landscape.mjs +304 -48
- package/tests/test-lighting.mjs +428 -0
- package/tests/test-manage-level.mjs +70 -51
- package/tests/test-performance.mjs +539 -0
- package/tests/test-sequence.mjs +82 -46
- package/tests/test-system.mjs +72 -33
- package/tests/test-wasm.mjs +98 -8
- package/vitest.config.ts +35 -0
- package/.github/release-drafter.yml +0 -148
- package/dist/prompts/index.d.ts +0 -21
- package/dist/prompts/index.js +0 -217
- package/dist/tools/blueprint/helpers.d.ts +0 -29
- package/dist/tools/blueprint/helpers.js +0 -182
- package/src/prompts/index.ts +0 -249
- package/src/tools/blueprint/helpers.ts +0 -189
- package/tests/test-blueprint-events.mjs +0 -35
- package/tests/test-extra-tools.mjs +0 -38
- package/tests/test-render.mjs +0 -33
- package/tests/test-search-assets.mjs +0 -66
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
export interface AutomationResponse {
|
|
2
|
+
success: boolean;
|
|
3
|
+
message?: string;
|
|
4
|
+
error?: string | {
|
|
5
|
+
message: string;
|
|
6
|
+
code?: string;
|
|
7
|
+
};
|
|
8
|
+
result?: unknown;
|
|
9
|
+
warnings?: string[];
|
|
10
|
+
details?: unknown;
|
|
11
|
+
data?: unknown;
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
}
|
|
14
|
+
export interface LevelResponse extends AutomationResponse {
|
|
15
|
+
levelPath?: string;
|
|
16
|
+
level?: string;
|
|
17
|
+
path?: string;
|
|
18
|
+
packagePath?: string;
|
|
19
|
+
objectPath?: string;
|
|
20
|
+
currentMap?: string;
|
|
21
|
+
currentMapPath?: string;
|
|
22
|
+
currentWorldLevels?: unknown[];
|
|
23
|
+
allMaps?: unknown[];
|
|
24
|
+
partitioned?: boolean;
|
|
25
|
+
streaming?: boolean;
|
|
26
|
+
loaded?: boolean;
|
|
27
|
+
visible?: boolean;
|
|
28
|
+
skipped?: boolean;
|
|
29
|
+
reason?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface ActorResponse extends AutomationResponse {
|
|
32
|
+
actorName?: string;
|
|
33
|
+
actorLabel?: string;
|
|
34
|
+
actorPath?: string;
|
|
35
|
+
actors?: unknown[];
|
|
36
|
+
components?: unknown[];
|
|
37
|
+
location?: {
|
|
38
|
+
x: number;
|
|
39
|
+
y: number;
|
|
40
|
+
z: number;
|
|
41
|
+
};
|
|
42
|
+
rotation?: {
|
|
43
|
+
pitch: number;
|
|
44
|
+
yaw: number;
|
|
45
|
+
roll: number;
|
|
46
|
+
};
|
|
47
|
+
scale?: {
|
|
48
|
+
x: number;
|
|
49
|
+
y: number;
|
|
50
|
+
z: number;
|
|
51
|
+
};
|
|
52
|
+
transform?: unknown;
|
|
53
|
+
tags?: string[];
|
|
54
|
+
properties?: Record<string, unknown>;
|
|
55
|
+
deleted?: boolean;
|
|
56
|
+
deletedCount?: number;
|
|
57
|
+
}
|
|
58
|
+
export interface AssetResponse extends AutomationResponse {
|
|
59
|
+
assetPath?: string;
|
|
60
|
+
asset?: string;
|
|
61
|
+
assets?: unknown[];
|
|
62
|
+
source?: string;
|
|
63
|
+
saved?: boolean;
|
|
64
|
+
metadata?: Record<string, unknown>;
|
|
65
|
+
tags?: string[];
|
|
66
|
+
graph?: Record<string, unknown[]>;
|
|
67
|
+
}
|
|
68
|
+
export interface EditorResponse extends AutomationResponse {
|
|
69
|
+
viewMode?: string;
|
|
70
|
+
fov?: number;
|
|
71
|
+
location?: {
|
|
72
|
+
x: number;
|
|
73
|
+
y: number;
|
|
74
|
+
z: number;
|
|
75
|
+
};
|
|
76
|
+
rotation?: {
|
|
77
|
+
pitch: number;
|
|
78
|
+
yaw: number;
|
|
79
|
+
roll: number;
|
|
80
|
+
};
|
|
81
|
+
cameraSettings?: unknown;
|
|
82
|
+
camera?: {
|
|
83
|
+
location?: unknown;
|
|
84
|
+
rotation?: unknown;
|
|
85
|
+
};
|
|
86
|
+
resolution?: {
|
|
87
|
+
width: number;
|
|
88
|
+
height: number;
|
|
89
|
+
};
|
|
90
|
+
filename?: string;
|
|
91
|
+
filePath?: string;
|
|
92
|
+
isPlaying?: boolean;
|
|
93
|
+
isPaused?: boolean;
|
|
94
|
+
isInPIE?: boolean;
|
|
95
|
+
playSessionId?: string;
|
|
96
|
+
bookmarkName?: string;
|
|
97
|
+
bookmarks?: unknown[];
|
|
98
|
+
realtime?: boolean;
|
|
99
|
+
}
|
|
100
|
+
export interface SequenceResponse extends AutomationResponse {
|
|
101
|
+
sequencePath?: string;
|
|
102
|
+
sequence?: string;
|
|
103
|
+
bindingId?: string;
|
|
104
|
+
trackName?: string;
|
|
105
|
+
keyframe?: unknown;
|
|
106
|
+
frameNumber?: number;
|
|
107
|
+
length?: number;
|
|
108
|
+
playbackPosition?: number;
|
|
109
|
+
requestId?: string;
|
|
110
|
+
}
|
|
111
|
+
export interface ConsoleResponse extends AutomationResponse {
|
|
112
|
+
output?: string;
|
|
113
|
+
command?: string;
|
|
114
|
+
}
|
|
115
|
+
//# sourceMappingURL=automation-responses.d.ts.map
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
export interface BaseResponse {
|
|
2
|
+
success: boolean;
|
|
3
|
+
message?: string;
|
|
4
|
+
error?: string;
|
|
5
|
+
errorCode?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface Vector3 {
|
|
8
|
+
x: number;
|
|
9
|
+
y: number;
|
|
10
|
+
z: number;
|
|
11
|
+
}
|
|
12
|
+
export interface Rotator {
|
|
13
|
+
pitch: number;
|
|
14
|
+
yaw: number;
|
|
15
|
+
roll: number;
|
|
16
|
+
}
|
|
17
|
+
export interface Transform {
|
|
18
|
+
location?: Vector3;
|
|
19
|
+
rotation?: Rotator;
|
|
20
|
+
scale?: Vector3;
|
|
21
|
+
}
|
|
22
|
+
export interface SpawnActorResponse extends BaseResponse {
|
|
23
|
+
actorName?: string;
|
|
24
|
+
actorPath?: string;
|
|
25
|
+
classPath?: string;
|
|
26
|
+
}
|
|
27
|
+
export interface DeleteActorResponse extends BaseResponse {
|
|
28
|
+
deletedCount?: number;
|
|
29
|
+
deletedActors?: string[];
|
|
30
|
+
}
|
|
31
|
+
export interface GetTransformResponse extends BaseResponse {
|
|
32
|
+
location?: Vector3;
|
|
33
|
+
rotation?: Rotator;
|
|
34
|
+
scale?: Vector3;
|
|
35
|
+
}
|
|
36
|
+
export interface SetTransformResponse extends BaseResponse {
|
|
37
|
+
actorName?: string;
|
|
38
|
+
}
|
|
39
|
+
export interface FindActorsResponse extends BaseResponse {
|
|
40
|
+
actors?: Array<{
|
|
41
|
+
name: string;
|
|
42
|
+
label?: string;
|
|
43
|
+
class?: string;
|
|
44
|
+
path?: string;
|
|
45
|
+
}>;
|
|
46
|
+
count?: number;
|
|
47
|
+
}
|
|
48
|
+
export interface GetComponentsResponse extends BaseResponse {
|
|
49
|
+
components?: Array<{
|
|
50
|
+
name: string;
|
|
51
|
+
type: string;
|
|
52
|
+
properties?: Record<string, unknown>;
|
|
53
|
+
}>;
|
|
54
|
+
}
|
|
55
|
+
export interface ApplyForceResponse extends BaseResponse {
|
|
56
|
+
actorName?: string;
|
|
57
|
+
forceApplied?: Vector3;
|
|
58
|
+
}
|
|
59
|
+
export interface AssetInfo {
|
|
60
|
+
name: string;
|
|
61
|
+
path: string;
|
|
62
|
+
class?: string;
|
|
63
|
+
packagePath?: string;
|
|
64
|
+
size?: number;
|
|
65
|
+
}
|
|
66
|
+
export interface ListAssetsResponse extends BaseResponse {
|
|
67
|
+
assets?: AssetInfo[];
|
|
68
|
+
count?: number;
|
|
69
|
+
directory?: string;
|
|
70
|
+
}
|
|
71
|
+
export interface CreateAssetResponse extends BaseResponse {
|
|
72
|
+
assetPath?: string;
|
|
73
|
+
assetName?: string;
|
|
74
|
+
}
|
|
75
|
+
export interface DeleteAssetResponse extends BaseResponse {
|
|
76
|
+
deletedPath?: string;
|
|
77
|
+
deletedCount?: number;
|
|
78
|
+
}
|
|
79
|
+
export interface GetDependenciesResponse extends BaseResponse {
|
|
80
|
+
dependencies?: string[];
|
|
81
|
+
referencers?: string[];
|
|
82
|
+
count?: number;
|
|
83
|
+
}
|
|
84
|
+
export interface AssetExistsResponse extends BaseResponse {
|
|
85
|
+
exists?: boolean;
|
|
86
|
+
assetPath?: string;
|
|
87
|
+
}
|
|
88
|
+
export interface CreateBlueprintResponse extends BaseResponse {
|
|
89
|
+
blueprintPath?: string;
|
|
90
|
+
blueprintName?: string;
|
|
91
|
+
parentClass?: string;
|
|
92
|
+
}
|
|
93
|
+
export interface GetBlueprintResponse extends BaseResponse {
|
|
94
|
+
path?: string;
|
|
95
|
+
name?: string;
|
|
96
|
+
parentClass?: string;
|
|
97
|
+
variables?: Array<{
|
|
98
|
+
name: string;
|
|
99
|
+
type: string;
|
|
100
|
+
defaultValue?: unknown;
|
|
101
|
+
}>;
|
|
102
|
+
functions?: Array<{
|
|
103
|
+
name: string;
|
|
104
|
+
parameters?: Array<{
|
|
105
|
+
name: string;
|
|
106
|
+
type: string;
|
|
107
|
+
}>;
|
|
108
|
+
returnType?: string;
|
|
109
|
+
}>;
|
|
110
|
+
components?: Array<{
|
|
111
|
+
name: string;
|
|
112
|
+
type: string;
|
|
113
|
+
properties?: Record<string, unknown>;
|
|
114
|
+
}>;
|
|
115
|
+
}
|
|
116
|
+
export interface AddVariableResponse extends BaseResponse {
|
|
117
|
+
variableName?: string;
|
|
118
|
+
variableType?: string;
|
|
119
|
+
}
|
|
120
|
+
export interface CreateNodeResponse extends BaseResponse {
|
|
121
|
+
nodeId?: string;
|
|
122
|
+
nodeName?: string;
|
|
123
|
+
}
|
|
124
|
+
export interface ConnectPinsResponse extends BaseResponse {
|
|
125
|
+
connected?: boolean;
|
|
126
|
+
fromNode?: string;
|
|
127
|
+
toNode?: string;
|
|
128
|
+
}
|
|
129
|
+
export interface LoadLevelResponse extends BaseResponse {
|
|
130
|
+
levelPath?: string;
|
|
131
|
+
levelName?: string;
|
|
132
|
+
}
|
|
133
|
+
export interface SaveLevelResponse extends BaseResponse {
|
|
134
|
+
savedPath?: string;
|
|
135
|
+
}
|
|
136
|
+
export interface ListLevelsResponse extends BaseResponse {
|
|
137
|
+
levels?: Array<{
|
|
138
|
+
name: string;
|
|
139
|
+
path: string;
|
|
140
|
+
isLoaded?: boolean;
|
|
141
|
+
isVisible?: boolean;
|
|
142
|
+
}>;
|
|
143
|
+
}
|
|
144
|
+
export interface BuildLightingResponse extends BaseResponse {
|
|
145
|
+
quality?: string;
|
|
146
|
+
buildTime?: number;
|
|
147
|
+
}
|
|
148
|
+
export interface PlayInEditorResponse extends BaseResponse {
|
|
149
|
+
isPlaying?: boolean;
|
|
150
|
+
isPaused?: boolean;
|
|
151
|
+
}
|
|
152
|
+
export interface SetCameraResponse extends BaseResponse {
|
|
153
|
+
location?: Vector3;
|
|
154
|
+
rotation?: Rotator;
|
|
155
|
+
fov?: number;
|
|
156
|
+
}
|
|
157
|
+
export interface ScreenshotResponse extends BaseResponse {
|
|
158
|
+
filePath?: string;
|
|
159
|
+
width?: number;
|
|
160
|
+
height?: number;
|
|
161
|
+
}
|
|
162
|
+
export interface ViewModeResponse extends BaseResponse {
|
|
163
|
+
viewMode?: string;
|
|
164
|
+
}
|
|
165
|
+
export interface CreateSequenceResponse extends BaseResponse {
|
|
166
|
+
sequencePath?: string;
|
|
167
|
+
sequenceName?: string;
|
|
168
|
+
}
|
|
169
|
+
export interface AddActorToSequenceResponse extends BaseResponse {
|
|
170
|
+
bindingId?: string;
|
|
171
|
+
actorName?: string;
|
|
172
|
+
}
|
|
173
|
+
export interface AddKeyframeResponse extends BaseResponse {
|
|
174
|
+
frameNumber?: number;
|
|
175
|
+
property?: string;
|
|
176
|
+
value?: unknown;
|
|
177
|
+
}
|
|
178
|
+
export interface PlaySoundResponse extends BaseResponse {
|
|
179
|
+
soundPath?: string;
|
|
180
|
+
audioComponentId?: string;
|
|
181
|
+
}
|
|
182
|
+
export interface CreateSoundCueResponse extends BaseResponse {
|
|
183
|
+
cuePath?: string;
|
|
184
|
+
cueName?: string;
|
|
185
|
+
}
|
|
186
|
+
export interface SpawnEffectResponse extends BaseResponse {
|
|
187
|
+
effectName?: string;
|
|
188
|
+
effectPath?: string;
|
|
189
|
+
location?: Vector3;
|
|
190
|
+
}
|
|
191
|
+
export interface CreateNiagaraSystemResponse extends BaseResponse {
|
|
192
|
+
systemPath?: string;
|
|
193
|
+
systemName?: string;
|
|
194
|
+
}
|
|
195
|
+
export interface SpawnLightResponse extends BaseResponse {
|
|
196
|
+
lightName?: string;
|
|
197
|
+
lightType?: string;
|
|
198
|
+
location?: Vector3;
|
|
199
|
+
}
|
|
200
|
+
export interface SetupGIResponse extends BaseResponse {
|
|
201
|
+
method?: string;
|
|
202
|
+
bounces?: number;
|
|
203
|
+
}
|
|
204
|
+
export interface CreateAnimBlueprintResponse extends BaseResponse {
|
|
205
|
+
blueprintPath?: string;
|
|
206
|
+
skeletonPath?: string;
|
|
207
|
+
}
|
|
208
|
+
export interface PlayMontageResponse extends BaseResponse {
|
|
209
|
+
montagePath?: string;
|
|
210
|
+
playRate?: number;
|
|
211
|
+
}
|
|
212
|
+
export interface ConsoleCommandResponse extends BaseResponse {
|
|
213
|
+
command?: string;
|
|
214
|
+
output?: string;
|
|
215
|
+
}
|
|
216
|
+
export interface ProfileResponse extends BaseResponse {
|
|
217
|
+
profileType?: string;
|
|
218
|
+
enabled?: boolean;
|
|
219
|
+
}
|
|
220
|
+
export interface SetCVarResponse extends BaseResponse {
|
|
221
|
+
cvarName?: string;
|
|
222
|
+
value?: string;
|
|
223
|
+
}
|
|
224
|
+
export interface InspectObjectResponse extends BaseResponse {
|
|
225
|
+
objectPath?: string;
|
|
226
|
+
className?: string;
|
|
227
|
+
properties?: Record<string, unknown>;
|
|
228
|
+
}
|
|
229
|
+
export interface GetPropertyResponse extends BaseResponse {
|
|
230
|
+
propertyName?: string;
|
|
231
|
+
value?: unknown;
|
|
232
|
+
propertyType?: string;
|
|
233
|
+
}
|
|
234
|
+
export interface SetPropertyResponse extends BaseResponse {
|
|
235
|
+
propertyName?: string;
|
|
236
|
+
newValue?: unknown;
|
|
237
|
+
}
|
|
238
|
+
export interface CreateLandscapeResponse extends BaseResponse {
|
|
239
|
+
landscapeName?: string;
|
|
240
|
+
componentCount?: {
|
|
241
|
+
x: number;
|
|
242
|
+
y: number;
|
|
243
|
+
};
|
|
244
|
+
}
|
|
245
|
+
export interface AddFoliageResponse extends BaseResponse {
|
|
246
|
+
foliageType?: string;
|
|
247
|
+
instanceCount?: number;
|
|
248
|
+
}
|
|
249
|
+
//# sourceMappingURL=responses.d.ts.map
|