Section |
---|
Maxwell Render Plug-in for Nuke |
...
width | 33% |
---|
...
This set of plug-ins was created to improve the connection between Maxwell Render and Nuke, allowing Nuke to import MXI high dynamic layered renders, and adjust the light intensity and color in a similar way to the MultiLight feature in Maxwell Render.
It includes an MXI reader which allows Nuke to import and read MXI renders (with all the information contained in it, including independent emitters and render channels), an MXI mixer which mixes all the independent emitters' information into a single image allowing independent adjustment of each emitter intensity (to produce precise color correction during the compositing process), a MXI render node, which allows the user to resume the render from Nuke,
Column | width | 33%|
---|---|---|
an MXI mask node, which creates masks based on the object/material ID buffers, and a Color Adjustments script, which allows intensity and color adjustment of each independent emitter present in the sequence, created to mimic the intensity and Color adjustment in MultiLight. Column | | width | 33%
Constant refinement
An interesting feature in Maxwell Render is the constant refinement approach of the render, which allows the post-production process to start while the render process is still going on, working in parallel and saving an extraordinary amount of time.
You can load your MXI render or sequence at a low level of quality (i.e at SL=4) and start the post-production process at this moment, while the render process continues.
Each time Nuke detects that the footage file has changed, it automatically refreshes it, showing you the latest and cleanest version available
...
Column | |||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Installing the plug-inDownload the plug-in installer for your particular platform from the Download Area and
If you are a Maxwell Render license holder, then please access the Download Area through the Customer Gateway to download the plug-in. If you are not a license holder, then please download a free demo version of the plug-in at www.maxwellrender.com by filling out the application form. Windows: Run the installer. Select the location/s where Nuke was installed.
|
...
width | 33% |
---|
Installing the Python Scripts
We have included some Python script commands with the plug-ins. They add a "Maxwell Utilities" menu in Nuke including all the features provided by the Maxwell Plug-in for Nuke.
Windows
...
.
...
Panel |
---|
icons\maxwell_icon.png |
Linux
Unpack the installer and copy the following files to the Nuke user folder (usually /home/username/.nuke):
Panel |
---|
icons (folder) |
Max OSX
Unpack the installer and copy the following files to the Nuke user folder (usually /Users/username/.nuke):
Panel |
---|
icons (folder) |
In the Nuke user directory you need to have the following files: menu.py and init.py. If either of them doesn't exist, just create it.
You must add the following commands to the menu.py file:
Code Block |
---|
import maxwell
nodesMenu = nuke.menu('Nodes')
newMenu = nodesMenu.addMenu('Maxwell Utilities', 'maxwell_icon.png')
newMenu.addCommand('MxiMixer', 'nuke.createNode("MxiMixer")', 'ctrl+m', 'maxwell_icon.png')
newMenu.addCommand('MxiRender', 'nuke.createNode("MxiRender")', '', 'maxwell_icon.png')
newMenu.addCommand('MxiMask', 'nuke.createNode("MxiMask")', '', 'maxwell_icon.png')
newMenu.addCommand('Reload All', 'maxwell.reloadAllReads()', '', 'maxwell_icon.png')
newMenu.addCommand('Reload Selected', 'maxwell.reloadSelectedReads()', '','maxwell_icon.png')
newMenu.addCommand('Color Adjustments', 'maxwell.mxihue()', '', 'maxwell_icon.png')
|
And the following commands to the init.py file:
...
Section | |||||||||
---|---|---|---|---|---|---|---|---|---|
|