save_scene
Save the current 3ds Max scene file to disk. Use to overwrite existing files or create new copies with specified paths.
Instructions
保存当前 3ds Max 场景文件。
该工具可以将当前场景保存到文件,支持覆盖保存和另存为。
Args: file_path: 保存的文件路径。 - 如果为空字符串,则保存到当前文件(覆盖保存)。 若当前场景未保存过则会失败。 - 如果指定了路径,则另存为到该路径。 路径必须以 .max 结尾,如 "C:/Projects/MyScene.max"。
Returns: dict: 操作结果。 - success (bool): 是否成功。 - file_path (str): 保存的文件完整路径。 - message (str): 操作描述信息。
示例调用 - 覆盖保存: save_scene()
示例调用 - 另存为: save_scene(file_path="C:/Projects/MyScene.max")
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | No |