so it should run in max8 and newer. ArYes: try if just this snippet works for you:$.modifiers[#unwrap_uvw].unwrap5.quickPlanarMap();$.modifiers[#unwrap_uvw].unwrap.relaxByFaceAngle 1000 0.0 1.0 false; to use it first add your unwrap modifier, and select some faces like before then open the maxscript listener [F11] - key…
because its written messy? :) thanks for the hint, improved code:macroScript quick_planar_map category:"BradMyers82" toolTip:"quick planar map and relax"( local uv = modPanel.getCurrentObject(); if classof (uv) == Unwrap_UVW then( local numFacesSelected = ( uv.unwrap.getSelectedPolygons() ).numberSet; if (numFacesSelected…
here is a macroscript that does that + a relax with 1000 iterations (+restore previous setting back) macroScript quick_planar_map category:"BradMyers82" toolTip:"quick planar map and relax"( local objs = modPanel.getCurrentObject(); if classof (objs) == Unwrap_UVW then( local numFacesSelected = (…
You've probably moved on already, but what version of 3dsmax are you using? It could be that one of the commands he's using is newer than the version of max you're using? Also I think the quick planar button was added to 9 or 2008, I know for sure its a part of UnwrapUVW in 2009.
Yep, in the customizeUI menu click the keyboard tab, set the group to Edit Poly and bind "Select Edge Loop" & "Select Edge Ring" To whatever keys you need. Then change the group to Unwrap UVW, and bind "Geom. Edge Loop/Ring Select" to the same things. Make sure to turn on Keyboard Shortcut Override (in the main toolbar it…