CRIPTONGAMING CHANNEL

geminicgi

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Dop Network in SOP July 29, 2015, 11:13 a.m.

Hi,
Maybe a simple question.
I simulate particles in DOP network in SOP node.
I created attribute before DOP node to get it's value in DOP and use as a simulated value ( like in xsi simulated tree ). So the previous frame value will be the new value of the current frame.
Are the bound attributes in vop pop in a DOP nw behave like that?
I know the node Solver node in SOP. Is there a similar in DOP nw?
Thanks,
G

Accessing a Varriable with Python SOP Aug. 19, 2014, 6:16 a.m.

Thanks,
Sorry maybe you missed my point. I wanted to write to an attribute which
is created by a AttribCreate SOP and access that by only its name.
How can i do that ?
G

Accessing a Varriable with Python SOP Aug. 18, 2014, 8:01 a.m.

Hi Everyone,
I'am using a phyton sop for testing simple stuffs. What here I want to solve a simple varible acces which varriable is not in definded in this code but earlier with a AttribCreate SOP. The problem is that the variable is not
accessable by its name.
How can I solve this ?
ThANKs!


– THE CODE –

node = hou.pwd()
geo = node.geometry()

# Add code to modify contents of geo.
# Use drop down menu to select examples.

points = geo.points()

for p in points:
p.setAttribValue( “A”, 1)