メソッド ¶
selectedKeyframes()
→ dictionary mapping instances of hou.Parm to tuples of hou.BaseKeyframe
グラフ内で現在選択されているキーフレームを(hou.Parm, keyframes)の辞書で返します。
例えば、選択したキー値を2倍にスケールするには:
channel_editor = hou.ui.paneTabOfType(hou.paneTabType.ChannelEditor) keyframes = channel_editor.graph().selectedKeyframes() for parm in keyframes.keys(): for key in keyframes[parm]: key.setValue(2 * key.value()) parm.setKeyframe(key)
setSelection(chan_graph_selections)
現行チャンネルグラフ選択に、指定したhou.ChannelGraphSelectionオブジェクトシーケンスを設定します。