Not there yet? Post your work in progress here to receive feedback from the users.
By Pistol
#312155
Hi,

Does anyone know how to set the "de-vignetting" variable for an animation? Form Z's plug-in does not have a de-vignetting dialog box so all the frames/files exported and rendered with vignetting on. I generally use a wide angle lens so the vignetting is getting quite noticeable and undesirable.

Any help would be greatly appreciated.

Cheers, Pistol
User avatar
By tom
#312230
We will check why the plugin misses that option. Meanwhile, you can try scripting on saved MXI frames.

Basically, the core loop will look like that. But, you need to add a counter etc. to make it suitable for series of MXI.
User Manual Chapter 16 has enough amount of information with examples.
Code: Select all
Maxwell.openMxi( "frame.mxi" );
Mxi.setVignetting(100);
Mxi.setVignettingEnabled(1);
Mxi.updatePreview();
Mxi.updateDisplay();
Maxwell.saveImage( "frame.png",8 );

So, is this a known issue?