SetTransitionSettings
Configure scene transition type and duration to customize effects between scenes using Presentation Buddy MCP Server. Automates OBS WebSocket commands for streamlined streaming production.
Instructions
Sets the current scene transition type and duration. 用途: シーン切り替え時のエフェクトをカスタマイズ
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": {
"transitionDuration": {
"description": "Duration of the transition in milliseconds.",
"type": "number"
},
"transitionName": {
"description": "Name of the transition to set (e.g., 'Fade', 'Cut', 'Slide').",
"type": "string"
}
},
"required": [
"transitionName",
"transitionDuration"
],
"type": "object"
}
},
"required": [
"params"
],
"type": "object"
}