set_time_range
Configure animation timing in 3ds Max by setting frame range, current frame position, and frame rate parameters.
Instructions
设置 3ds Max 的时间/帧范围参数。
该工具可以设置动画的帧范围、当前帧位置和帧率。 所有参数都是可选的,只设置你需要修改的参数。
Args: start_frame: 动画起始帧。留空不修改。 end_frame: 动画结束帧。留空不修改。 current_frame: 当前帧(时间滑块位置)。留空不修改。 fps: 帧率。常见值: "24"(电影)、"25"(PAL)、"30"(NTSC)。留空不修改。
Returns: dict: 操作结果。 - success (bool): 是否成功。 - time_range (dict): 设置后的时间范围信息。 - message (str): 操作描述信息。
示例调用 - 设置帧范围: set_time_range(start_frame="0", end_frame="100")
示例调用 - 设置当前帧: set_time_range(current_frame="50")
示例调用 - 设置帧率和范围: set_time_range(start_frame="0", end_frame="240", fps="24")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start_frame | No | ||
| end_frame | No | ||
| current_frame | No | ||
| fps | No |