Hi,
I do not know how set and remove keyframes in python ?
I have found nothing in the documentation.
Theratos.
How set and remove keyframes in python ?
8728 4 1- theratos
- Member
- 11 posts
- Joined: Nov. 2013
- Offline
- mandrake0
- Member
- 644 posts
- Joined: June 2006
- Offline
- theratos
- Member
- 11 posts
- Joined: Nov. 2013
- Offline
Thanks for your reply.
in fact, I would like for example a box :
keyframe to 0 with a translate (0, 0, 0)
keyframe to 24 with a translate (1,0,0)
I have tried this :
hou.setFrame(24)
node = hou.node(“/obj/box_object1”)
parm_tuple = node.parmTuple(“t”)
parm_tuple.set((1, 0, 0))
It works in part, but I do not see too much how to do really.
Moreover, in the docu I have this feature is not yet documented and/or implemented… :cry:
Theratos.
in fact, I would like for example a box :
keyframe to 0 with a translate (0, 0, 0)
keyframe to 24 with a translate (1,0,0)
I have tried this :
hou.setFrame(24)
node = hou.node(“/obj/box_object1”)
parm_tuple = node.parmTuple(“t”)
parm_tuple.set((1, 0, 0))
It works in part, but I do not see too much how to do really.
Moreover, in the docu I have this feature is not yet documented and/or implemented… :cry:
Theratos.
- PradeepBarua
- Member
- 443 posts
- Joined: Sept. 2012
- Offline
- eetu
- Member
- 606 posts
- Joined: May 2007
- Offline
theratos
Thanks for your reply.
It works in part, but I do not see too much how to do really.
Moreover, in the docu I have this feature is not yet documented and/or implemented… :cry:
The links posted by mandrake show you how to do it.
You need to 1) create a keyframe 2) set its time 3) set its value 4) add it to the parameter.
All relevant methods are implemented and documented via the link above.
-
- Quick Links