godot_save_scene
Save Godot scenes to disk, either the active scene or a specified file path, with optional Save As functionality for creating copies.
Instructions
Saves the specified scene (or active scene) to disk.
Args:
scene_path (string, optional): res:// path of the scene to save. Omit for active scene.
save_as (string, optional): New res:// path to save a copy to (like Save As).
Returns: Confirmation with the saved path.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scene_path | No | Scene to save. Omit for active scene. | |
| save_as | No | New path to save a copy (Save As) |