SetSourceScale
Adjust the scale of a source in a specified scene using X and Y axis scale factors. Part of the Presentation Buddy MCP Server, enabling automated OBS stream production.
Instructions
Sets the scale 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": {
"scaleX": {
"description": "Scale factor on X axis.",
"type": "number"
},
"scaleY": {
"description": "Scale factor on Y axis.",
"type": "number"
},
"scene": {
"description": "Name of the scene containing the source.",
"type": "string"
},
"source": {
"description": "Name of the source.",
"type": "string"
}
},
"required": [
"scene",
"source",
"scaleX",
"scaleY"
],
"type": "object"
}
},
"required": [
"params"
],
"type": "object"
}