Adam Hendrickson

HappehLemons

About Me

Connect

LOCATION
Not Specified
ウェブサイト

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Houdini Apprentice Render Error - No licenses could be found 2020年7月28日17:44

Thank you! Although I'm not sure was caused this to happened - I manually added the license again in the License Administrator and this fixed the issue. The first time it didn't seem to work is because of a miss typed O versus a 0.

I used the following like to generate the mantra render:
https://www.sidefx.com/services/non-commercial-license/ [www.sidefx.com]

In case anyone else runs into this!

Houdini Apprentice Render Error - No licenses could be found 2020年7月28日4:35

I'm getting :
No licenses could be found to run this application. Please check for a valid license server host

When I try to render with Houdini Apprentice. I don't render too often so I don't see what would cause this.

Please help! I can't continue my projects right now currently and don't know what to do. I have tried running in administrator mode and manually entering a license, neither resolve this.

Promote Specific Parameter with Python 2019年2月3日17:50

Andr
You mean you want to create channel references?
I guess you should just feed the one paramater value with one parm object

example when both parms are in the same node:

node = hou.pwd()
first = node.parm("first")
second = node.parm("second")

first.set(second)  # this will link the first parm to the values of the second parm


I think there's confusion here, let me try to simplify.

I use python to create a node. I want a parameter of that node to be automatically promoted. Here's the way to manually do this:


What do I need to do in order to do this automatically in python?