obs-get-scene-item-transform
Retrieve the position, rotation, scale, or crop values of a specified item within an OBS Studio scene for precise layout control and adjustments.
Instructions
Get the position, rotation, scale, or crop of a scene item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sceneItemId | Yes | The ID of the scene item | |
sceneName | Yes | The scene the item is in |
Input Schema (JSON Schema)
{
"properties": {
"sceneItemId": {
"description": "The ID of the scene item",
"type": "number"
},
"sceneName": {
"description": "The scene the item is in",
"type": "string"
}
},
"required": [
"sceneName",
"sceneItemId"
],
"type": "object"
}