SetSourcePosition
Define the X and Y coordinates to position a specific source within a scene, enabling precise placement for streaming automation.
Instructions
Sets the position of a source in a scene.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"params": {
"additionalProperties": false,
"properties": {
"scene": {
"description": "Name of the scene containing the source.",
"type": "string"
},
"source": {
"description": "Name of the source.",
"type": "string"
},
"x": {
"description": "X position in pixels.",
"type": "number"
},
"y": {
"description": "Y position in pixels.",
"type": "number"
}
},
"required": [
"scene",
"source",
"x",
"y"
],
"type": "object"
}
},
"required": [
"params"
],
"type": "object"
}