Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 Maya 上使用 Python 编写脚本,以允许我将选定的关键帧缩放一定数量。
基本上,如果我在动画上制作动画,我可以轻松地将所有关键帧缩放为相隔 2 个关键帧。由于我是初学者,因此脚本应该非常原始,因为我仍然需要做一些手动工作(选择对象和关键帧)。
我只需要一个可以自动为我缩放它们的脚本。
要开始使用 maya python 脚本,请选择所有关键帧,然后:
import maya.cmds as mc mc.scaleKey(timeScale=2, timePivot=0)