Any better API documentation?
whoacowboy
Posts: 28
Is there any better API documentation than this?
I am working with a lot of files and need to make some random changes to each file that would be a whole lot easier to script than to do manually.
Specifically setting these:
Ground Position Mode to manual,
Ground Shadow Intensity to .5
Environment Intensity to 1.25.
Comments
Does anyone know how to set the following properies with script?
Ground Position Mode to manual,
Ground Shadow Intensity to .5
Environment Intensity to 1.25.
Thanks
Please don't start muktiple threads on a single issue.
If you want to edit a .duf file the obvious starting point is http://docs.daz3d.com/doku.php/public/software/dazstudio/4/referenceguide/scripting/api_reference/object_index/json
Sorry, I forgot to edit my original and remove the second question. I meant to split them into two.
I have read through that section. Can you point me in a direction where I could find how to edit these settings.
Ground Position Mode to manual,
Ground Shadow Intensity to .5
Environment Intensity to 1.25.
I looked through the render settings and I am unable to find them.
Thank you, james
You could open the file you want to edit, using DzGZFile in case it is compressed, read the whole thing into a string, use the JSON parse to convert to an object, and then explore that to find the values to change.
That's great, thank you.