Half Res, Double Res - macroscripts

Just made these. The icons and script names are probably a bit misleading, these don’t do a render at half and double, they adjust your resolution. Unzip to max dir.
Half+DoubleRes.zip (3.25 KB)

Also note that for whatever reason, this won’t work with the renderpanel open.

Yep, if the render panel is open, MAXScript changes don’t take effect. You should close it before making any change:


render_panel_open = renderSceneDialog.isOpen()
if (render_panel_open) do renderSceneDialog.close()

-- Do stuff

if (render_panel_open) do renderSceneDialog.open()

Thanks for the tip :slight_smile: