Set Resolution Level to Base
bluejaunte
Posts: 1,902
Anyone know how a script can set Resolution Level to 'Base' on a figure?
You currently have no notifications.
Anyone know how a script can set Resolution Level to 'Base' on a figure?
Licensing Agreement | Terms of Service | Privacy Policy | EULA
© 2024 Daz Productions Inc. All Rights Reserved.
Comments
I guess that the easiest way is through the 'Resolution Level' property. If we are talking about Genesis figures, this property is in the 'General/Mesh Resolution' group, and the name is "lodlevel". This is an enum property, taking 0 value for base resolution and 1 for high resolution. The script should be something like:
I stored the property into the oProperty variable for any use.... Setting its value back to 1:
oProperty.setValue(1);
you will have high resolusion again
Works great, thanks so much!
The sample script http://docs.daz3d.com/doku.php/public/software/dazstudio/4/referenceguide/scripting/api_reference/samples/properties/node_properties/start is relevant here