Delete a scene
delete_sceneRecursively delete a scene folder including scene.gbsres, actors, and triggers. Refuses if it's the start scene or referenced by other scripts; use force to skip reference checks. No undo.
Instructions
Recursively delete a scene folder (scene.gbsres + actors/ + triggers/). Refuses if the scene is the start scene, or if any other script references this sceneId (e.g. EVENT_SWITCH_SCENE) — pass force: true to override the reference check (the start-scene guard is unconditional). Use list_scenes to find target ids. There is no undo; commit your work first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| force | No | Skip the cross-reference check. The start-scene guard is NOT bypassed. | |
| sceneId | Yes | Scene id (UUID) to delete. |