Pre-renderscripts and DR

it seems Spawner nodes not load pre-renderscripts during DR

I am right ?

thx

Hm, they should be working… I need to test this though.

Best regards,
Vlado

I tryed to set other anti alising DMC via

renderers.production.twoLevel_baseSubdivs=2
renderers.production.twoLevel_fineSubdivs=8

but buckets from nodes are a bit more brighten - just host render fine
same situation without script - all nodes render fine
tested it 2 times
I dont know how DMC influence the brightness but I did it 2 times …

Setting the AA settings in my experience works best when evaluating as a #filePostOpenProcess

callbacks.removescripts id:#vray_samples
txt = "renderers.current.twoLevel_baseSubdivs = 2\n"
txt +="renderers.current.twoLevel_fineSubdivs = 8\n"
callbacks.addscript #filePostOpenProcess txt id:#vray_samples persistent: true
```Works like charm with DR here.

Best regards,
Michael

You can’t really change the settings in a pre-render script - at that point, rendering has already started and V-Ray has cached all the render settings in its internal structures.

Would better to use a #filePostOpenProcess callback, like Michael suggested.

Best regards,
Vlado

ok thx

-----------------