SaveReplayBufferAndAdd
Automatically saves the replay buffer and integrates it as a media source into a specified scene, streamlining replay display during live streaming.
Instructions
Saves the replay buffer and adds it as a media source to 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": {
        "replayFolder": {
          "description": "Path to the folder where replay files are saved (optional).",
          "type": "string"
        },
        "sceneName": {
          "description": "Name of the scene to add the replay to.",
          "type": "string"
        },
        "sourceName": {
          "description": "Name for the new media source.",
          "type": "string"
        }
      },
      "required": [
        "sceneName",
        "sourceName",
        "replayFolder"
      ],
      "type": "object"
    }
  },
  "required": [
    "params"
  ],
  "type": "object"
}