Saori Yoshimoto work notes since 2018

Showing posts with label Houdini/Code/expression. Show all posts
Showing posts with label Houdini/Code/expression. Show all posts

Tuesday, May 28, 2024

[Exp] Houdini super simple luncher

I made super simple Houdini luncher for multiple version with ChatGPT. Also, I successfully installed AWS "deadline" except H20.

-Issue: Can't find deadline node on H20. 


The Houdini launcher batch is below.

----------------

Friday, February 22, 2019

[Exp] expression path

-ref SOP Path
`opfullpath("../../OUT_object")
`opinputpath("..",0)

-ref geometry file (ex.   a.bgeo)
op:/path/to/sop

-ref texture from copnet
op:`opfullpath("../../cop2net1/OUT_petal")`

Saturday, October 20, 2018

[expression] stamp, stamps

stamp(scope, token, value)
scope:the path of the node to get the value from.
token:the name of the node to get the value from.
value:the default string to use if token not exist. 
ex). 
stamp("../copy1", "sides", 5)
stamp("..", "fuzzy", 0.5)

stamps(scope, token, value)
scope:the path of the node to get the value from.
token:the name of the node to get the value from.
value:the default string to use if token not exist.
ex). 
stamps("../copy1", "name", "defaultname")