editor_move_camera
Precisely position the viewport camera by specifying exact coordinates and rotation angles for capturing screenshots in the Unreal Editor.
Instructions
Move the viewport camera to a specific location and rotation for positioning screenshots
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | Camera world position coordinates | |
rotation | Yes | Camera rotation in degrees |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"location": {
"additionalProperties": false,
"description": "Camera world position coordinates",
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
},
"required": [
"x",
"y",
"z"
],
"type": "object"
},
"rotation": {
"additionalProperties": false,
"description": "Camera rotation in degrees",
"properties": {
"pitch": {
"type": "number"
},
"roll": {
"type": "number"
},
"yaw": {
"type": "number"
}
},
"required": [
"pitch",
"yaw",
"roll"
],
"type": "object"
}
},
"required": [
"location",
"rotation"
],
"type": "object"
}