Announcement

Collapse
No announcement yet.

Half Res, Double Res - macroscripts

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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.
    Attached Files

  • #2
    Also note that for whatever reason, this won't work with the renderpanel open.

    Comment


    • #3
      Yep, if the render panel is open, MAXScript changes don't take effect. You should close it before making any change:
      Code:
      render_panel_open = renderSceneDialog.isOpen()
      if (render_panel_open) do renderSceneDialog.close()
       
      -- Do stuff
        
      if (render_panel_open) do renderSceneDialog.open()

      Comment


      • #4
        Thanks for the tip

        Comment

        Working...
        X