Oddly it looks like you cant bind the bridge function by default. You can only hotkey a macroscript. Which is simply a script with a macroscript header. Pedro 's script is already a macroscript as you can see it has : macroScript SuperSmartCreate
category:"Pedro Scripts"
toolTip:"Super Smart Create" So execute it once, by…
oh cool, I've also made my own scripts like this based on perna's hotkey post and it's really interesting to see how you did things differently. I'm going to add your create face bit in to handle stuff bridge doesn't work on. in my own "smart create" script I ripped a piece of code from shortcutter…
That could be possible but actually it should be another script. This one is called smart create because you are creating geometry. When you weld you are reducing geometry so it falls outside the scope of this script. I use another stuff for that. I use the letter X for deleting geometry. And then, ctrl+X for detaching…
Hey Pedro, I've got a similar script like yours (and ofcourse inspired by Per as well). I haven't try your script but just would like to know about the cut/ bridge function. Let's say on edge selection mode; - select 2 non-border edges and hit C it'll connect them - select 2 border edges and hit C it'll bridge them But…
I opened up my old script and think of a way to fix this, and I've come up with abit of a hacky way, but it seems to function ok;( local eInit = (polyop.getEdgeSelection $) as array; vTest1 = (polyOp.getVertsUsingEdge $ eInit[1]) as array; vTest2 = (polyOp.getVertsUsingEdge $ eInit[2]) as array; eTest1 =…
drag and drop the script to your max viewport and then go to customize \ customize user interface. In the category choose Pedro Scripts and then assign smart create to letter C and save.
There's a version here, plus Edit Poly fixes. http://www.scriptspot.com/forums/3ds-max/general-scripting/help-me-get-this-script-work-in-edit-poly-modifier
I actually wrote a script that did almost the exact same thing back around 2011-2012, so was surprised when I first saw this thread. Since it looks like the threads links are dead, if no one still has Pedros script, I can dig up the one I wrote for you guys to use instead.
Gonna post some scripts I use regularly. Super Smart Create. Based on a script by Perna, and with help from Miauu. I use it assigned to letter C (because create :D ) and depending on the subobject I am in it does diferent thing. Plus it works in both Editable Poly and the Edit Poly modifier. Divides the selected edge in 2,…
@Pedro - tried your script and it did happened similar behavior with what I described above. You can test it on a single poly, select 2 opposite edges from that 1 poly and run the script, it bridge them instead of connect, cus it detect those as a 2 border edges. Do you have any idea on how to correct this? PS; I guess…