open_scene
Load a specified .max scene file in 3ds Max, with options to save or discard current changes before opening.
Instructions
在 3ds Max 中打开一个场景文件。
该工具将加载指定的 .max 场景文件。
Args: file_path: 要打开的场景文件完整路径,必须是 .max 文件。 例如: "C:/Projects/MyScene.max" force: 是否强制打开(不提示保存当前场景)。 "true" 表示强制打开(不保存当前更改), "false"(默认)表示如果当前场景有更改会先尝试保存。
Returns: dict: 操作结果。 - success (bool): 是否成功。 - file_path (str): 打开的文件路径。 - message (str): 操作描述信息。
示例调用: open_scene(file_path="C:/Projects/MyScene.max")
示例调用 - 强制打开(不保存当前场景): open_scene(file_path="C:/Projects/MyScene.max", force="true")
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| force | No | false |