There is no way to rebind ctrl+backspace to another function (at least that I know of), backspace is not recognized as a valid keystroke in the binds. But you can assign that function to another key, just bind VertexRemove in the "Ribbon - Modeling" category. I'm using a custom macro for that:MacroScript…
I'm bumping this thread to post an update to miauu's script, made by the man himself recently. It works with edges, vertices, multiple selections in editable poly and edit poly. Thank you miauu! --****************************************************************************************************** -- Created: 16-07-2011…
I have too this problem. I cant rebind "clean remove" function to another key. I dont like pressing CTRL + Backspace. "VertexRemove" doesnt do clean remove for me. It only remove edge but not associated vertecies. It seems that clean remove is missing in custom keyboard menu. Only solution to this I see in some good script…
I have been building a lowpoly from a detailed sub-d cage for the last few days and it really slows me down to have to pull my hands away to hit ctrl-backspace. Any way to rebind this to another key? I would use one of those third party tools that can bind a macro to any key but I dont want to lose the ability to type with…
The support for Edit_Poly modifier is added. :) macroscript CleanRemovecategory:"miauu"tooltip:"As default max Ctrl+Backspace"buttonText:"Clean Remove"( if selection.count ==1 then ( function GetEdgesUsingVertEPM curSel verts = ( local edgeVerts = #() for i in verts do ( edgeVerts[1] = curSel.GetEdgeVertex i 1 node:$…
I just tested the script on max2011. Everything works fine. I don't know why on max2010 the Edit_Poly support is not working for you. Try this code:macroscript CleanRemovecategory:"miauu"tooltip:"As default max Ctrl+Backspace"buttonText:"Clean Remove"( if selection.count ==1 then ( function GetEdgesUsingVertEPM curSel…