Sure, do this: Create a new txt file and paste either one or both scripts into it and save. Then rename the txt file extension (actual file name doesn't matter) to .mcr and in max go to MaxScript>Run script and load the mcr file. Now they should show up in your customize hotkeys menu (customize>customize user interface)…
In my experience NURMS subdivision is quite slower than TurboSmooth. Anyway you don't need a custom script to toggle it. It can be found in Customize > Customize User Interface... under Category: Editable Polygon Object, Action: NURMS Toggle (Poly). It is also available in default quad menu for Editable Poly Objects,…
Hi well basically what the title says, I tried looking for it in the forum without chance, so yeah I want to use + and - commands in the keyboard to go up and down iterations in turbosmooth, like you do in XSI, also toggle turbosmooth on/off if possible but mostly the first feature, so if you know of a script that does…
Totally, its much slower. I find more convenient to work with when im modelling though. Generally i work with smoothing off and toggle it on for a preview and then disable it, I collapse the stack alot so i end up constantly having to add new modifiers which is a pain. I find Nurms is nice for a quick preview. Once im done…
Show end result' for on/off, and here's the two scripts I use for going up/down iterations: macroScript TSdivUpcategory: "GregsScripts" ( curObjs = (selection) as array count = curObjs.count for i in curObjs do ( if (ClassOf i.modifiers[1]) == turbosmooth then ( if (i.modifiers[#TurboSmooth].iterations == 2) then…
Personally i prefer this. Its a little slower than turbo smooth but requires no stack. Drag and drop onto the UI and it will Toggle Smoothing on any editable polyif(classof selection[1] == editable_poly) then( selection[1].surfSubdivide = (not selection[1].surfSubdivide)) I added this to the script above. now it will work…