0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Maya pymel で keyframe animation 設定するメモ

Last updated at Posted at 2020-02-24

背景

  • Maya で programmable に attribute にキーフレーム設定したい

方法

setKeyframe コマンドでいける.

cmds.setKeyframe( 'pSphere1', t=0, at='tx', v=1 )

などとして, object と attribute と値を設定可能

attribute の key をすべて削除する

keyframe を設定しなおしたいとき.

cmds.cutKey を使う.

time slider の範囲設定をする

cmds.playbackOptions で可能

TODO

  • animation の補間方法を指定できないか調べる
    • animCurve ノードを追加することになる?
  • TRAX エディタに, clip として追加する方法を調べる
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?