CRIPTONGAMING CHANNEL

geminicgi

About Me

Connect

LOCATION
Not Specified
ウェブサイト

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Dop Network in SOP 2015年7月29日11:13

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 2014年8月19日6:16

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 2014年8月18日8:01

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)