Vormav

Vormav

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Bug:Unlinking connection in vop? Oct. 6, 2007, 10:20 p.m.

Yeah, I'm in compact mode. But don't have any HOUDINI_UISCALE global. Should I?

I'm starting to notice that with the zoom though. There is some scale level that it seems to work with (though your placement of the cursor over the connection has to be perfect). I can't delete the connection at any other zoom level.

Bug:Unlinking connection in vop? Oct. 6, 2007, 6:56 p.m.

Noticed that this one was posted before, though it didn't really get any attention: http://www.sidefx.com/index.php?option=com_forum&Itemid=172&page=viewtopic&t=9455&highlight=disconnect [sidefx.com]

Same problem I'm having in 9.0.733 (under XP, if that makes a difference).
Right clicking on connections doesn't bring up the usually menu with the “disconnect” option inside VEX. Actually, not in SHOPs either, for that matter.
Right now, the only way I'm capable of removing any connections in vex is to select a node, right click on a connection, and locate the “remove selected node inputs” option (strange that I can only get this node-centric menu when right clicking on a connection, but not when right-clicking on a node… :? ).
Why that's a completely unacceptable solution: Imagine that I have a node with 20 inputs, and I only want to disconnect one of them.

VOP RSL surface - inline outputs broken? Oct. 6, 2007, 6:42 p.m.

I'm having issues with the inline code vop in H9.0.733: The outputs aren't working correctly.

I have a simple case where I have the output of my inline plugging into my final output color. In order to do this, I've enabled an output on the inline vop, and given it an appropriate name.

Problem is, here's what the output looks like:


// Code produced by: inline1
tex = color(1,0,0);

// Code produced by: output1
Ci = color(0, 0, 0);


So basically, that output connection is being completely ignored.

Even if I wanted to try to get around this problem by manually setting the output value, I can't. Here's what I get when I do that in my inline:

// Code produced by: inline1
tex = color(1,0,0);
Ci = tex;

// Code produced by: output1
Ci = color(0, 0, 0);


So unless I'm completely missing something here… I basically can't use the inline vop.


Anyone else having the same problem?