Copy link to clipboard
Copied
I need to modify hundreds of Comps that have the settings set for ray-traced 3d for Classic3D.
I can not find documentation that tells me if you can modify this item in Composition.
Someone would know to answer me.
Thank you in advance for your help.
Regards.
Rubens Nobre.
Of course you can:
app.project.item(index).renderer
Description
The current rendering plug-in module to be used to render this composition, as set in the Advanced tab of the Composition Settings dialog box.
Allowed values are the members of CompItem.renderers.Type: String; read/write
In CC2018 the available renderers are:
So you'll have to
...Copy link to clipboard
Copied
Of course you can:
app.project.item(index).renderer
Description
The current rendering plug-in module to be used to render this composition, as set in the Advanced tab of the Composition Settings dialog box.
Allowed values are the members of CompItem.renderers.Type: String; read/write
In CC2018 the available renderers are:
So you'll have to create a for-loop and iterate through all of your comps and set the renderer to "ADBE Advanced 3d" like so:
curComp = app.project.activeItem;
curComp.renderer = "ADBE Advanced 3d";
Hope this helps.
Copy link to clipboard
Copied
Thank You TheodorosGR​ I'll try now.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now