1
[Max] I need help! / Re: Rendering Issues
« on: 2025-07-03, 11:57:06 »
Thank you everyone! i did it now!
Having trouble verifying your license? If you are seeing a license verification message or are unable to access your Chaos products, please follow these simple steps to fix sign-in issues. If you have already tried this and are still unable to access your Chaos products, please contact Support.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
allMaterials = getClassInstances PhysicalMaterial
if allMaterials.count > 0 then
(
for mat in allMaterials do
(
if mat.hasProperty #reflectivityMap then
mat.reflectivityMap.amount = 0.0
if mat.hasProperty #subsurfaceScattering then
mat.subsurfaceScatteringScale = 0.0
)
format "All Physical Materials have been updated.\n"
)
else
(
format "No Physical Materials found in the scene.\n"
)