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 を使用してスクリプトを作成し、選択したキーフレームを特定の数だけスケーリングできるようにしています。
基本的に、1 つのキーフレームをアニメーション化すると、すべてのキーフレームを 2 つのキーフレームだけ離すように簡単にスケーリングできます。私は初心者なので、スクリプトは非常に原始的なものである必要があります。まだ手作業 (オブジェクトとキーフレームの選択) を行っているためです。
必要なのは、それらを自動的にスケーリングするスクリプトだけです。
Maya Python スクリプトを開始するには、すべてのキーフレームを選択してから、次の操作を行います。
import maya.cmds as mc mc.scaleKey(timeScale=2, timePivot=0)