Erkan Ozgur Yilmaz

eoyilmaz

About Me

EXPERTISE
VFX Artist
INDUSTRY
Film/TV

Connect

LOCATION
Turkey

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Copy and Paste nonsense May 11, 2020, 9:39 a.m.

Now in Fedora 32 the problem is gone. I'm able to copy & paste without any problem. Tested both 17.5.460 and 18.0.416.

Copy and Paste nonsense April 21, 2020, 8:07 a.m.

Under Fedora 31 with Houdini 18.0.391 I have the copy&paste issue.

I have to hit Ctrl+C at least two times to copy the text to the clipboard. I tried to get used to do it multiple times, but sometimes I forgot it and trying to remove the wrongly pasted text by undoing with Ctrl+Z in any Wrangle is super annoying.

I wonder if there is a fix for this.

mimic "paste copied channels" behavior in python March 18, 2020, 10:30 a.m.

I just repost awong's answer for easy copy and pasting the code:

p = hou.parm(/obj/geo1/tx)
q = hou.parm(/obj/geo1/ty)
q.deleteAllKeyframes()
for k in p.keyframes():
    q.setKeyframe(k)
for k in p.keyframes():
    q.setKeyframe(k)