Notifications
Clear all

[Closed] Check/Uncheck VrayToon

Does anyone know how to access VrayToon in Atmospheric Effects using maxscript? I just want to turn it off, if it’s on, then turn it back on when I am done processing. Thanks.

2 Replies
 lo1
fn getVrayToon =
(
local vrtoon
for i = 1 to numatmospherics do if classof (getAtmospheric i) == VrayToon do vrtoon = (getAtmospheric i)
return vrtoon
)

this function will get the vraytoon as an atmospheric object

Thanks for your help. Works well for my case.