I've been watching this video Rock Genneration Lesson 6 [sidefx.com]
and trying to follow along in Houdini 15.5.
Basically, an attribute create node is applied to a grid, to create a falloff variable. Then a paint node is added to paint values into the created attribute on the points on the grid. However when the attribute created as a local variable and then run through a scatter node the local variable seems to no longer be passed down so when it is run into the copy node it no longer recognizes the $FALLOFF. Does anyone know if there a workaround for this?
Scatter node not passing local variable
3294 4 1- medendog
- Member
- 13 posts
- Joined: 10月 2009
- Offline
- sepu
- Member
- 460 posts
- Joined: 2月 2012
- Offline
- bi1ash
- Member
- 1 posts
- Joined: 12月 2015
- Offline
- jsmack
- Member
- 8038 posts
- Joined: 9月 2011
- Offline
The scatter sop is capable of transferring interpolated attribute values itself. Alternatively, prim num and uv values can be stored to retrieve interpolated values later using the attribute interpolate sop. Attribute transfer should be considered a ‘last resort’ type node due to it's expense.
http://www.sidefx.com/docs/houdini/nodes/sop/scatter.html#stick [www.sidefx.com]
http://www.sidefx.com/docs/houdini/nodes/sop/scatter.html#stick [www.sidefx.com]
- tamte
- Member
- 8780 posts
- Joined: 7月 2007
- Offline
local variables are being phased out and new nodes are not supporting them anymore
there are much more efficient ways to achieve what you are trying to do, especially if you are trying to vary scale or transform of the copies it's always better to use instancing attributes like pscale, orient, … instead of stamping
however to be able to follow the tutorial you can just add a pointwrangle after the scatter with the following code
it will create local variable from every point attribute with the upper case name of the attribute
there are much more efficient ways to achieve what you are trying to do, especially if you are trying to vary scale or transform of the copies it's always better to use instancing attributes like pscale, orient, … instead of stamping
however to be able to follow the tutorial you can just add a pointwrangle after the scatter with the following code
string attribs[] = detailintrinsic(0, "pointattributes"); foreach(string attrib; attribs){ addvariablename(0, attrib, toupper(attrib)); }
it will create local variable from every point attribute with the upper case name of the attribute
Tomas Slancik
FX Supervisor
Method Studios, NY
FX Supervisor
Method Studios, NY
-
- Quick Links