Forum Moderators: Staff
Poser Python Scripting F.A.Q (Last Updated: 2024 Sep 18 2:50 am)
It's "Roughness". You can simply print out the internal names of all the inputs in a node with a wacro like this:
def printInputs(mat):
tree = mat.ShaderTree()
root = tree.Node(0)
for node in tree.Nodes():
for input in node.Inputs():
print input.InternalName()
mats = poser.Scene().WacroMaterials()
if (mats == None):
poser.DialogSimple.MessageBox( "Please select a material first.")
else:
for mat in mats:
printInputs(mat)
This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.
I want to change the highlight size via script. All of the current wacro scripts use InputByInternalName to access various properties of the shader trees. I cannot find or figure out the name of the highlight size. I found Highlight_Color and Highlight_Value. Highlight_size does not work neither does Ns.