Amazing scripts Maxi :) Really making working in Blender a lot faster. Here are some notes from today's 2-3 hours... 0-Maybe I am not understanding something correctly, but Super Smart Create gives strange results sometimes with simple operations: selecting two vertices for example seems to connect other vertices elsewhere…
About: This is a collection of intuitive, context sensitive tools to improve productivity that I did to improve my workflow as I transitioned into Blender. They are designed to be used as hotkeys, removing the amount of interaction with the menus and allowing for a less interrupted modeling experience. This is the first…
That would be a fantastic addition to the quickSelectSubobject scripts Maxi, awesome. If anyone is interested, I copied Maxi's template and made a collapse script too, since I always had this feature in Alt+X in my other 3D apps. <div>class SmartCollapse(bpy.types.Operator):<br></div><div> bl_idname = "mesh.smart_collapse"…
You have to change the code of the CSBevel class in misc.py to this: class CSBevel(bpy.types.Operator): bl_idname = "mesh.context_sensitive_bevel" bl_label = "Context Sensistive Bevel" bl_description = "Context Sensitive Bevels and Inset" bl_options = {'REGISTER', 'UNDO'} def cs_bevel(self): mode = itools.get_mode()…
The FFD tool looks awesome (wanted a quick way to use FFD in Max like that for years without using modifiers...). Is quad cap able to handle odd branching/winding shapes? I've seen a bunch of quad cap scripts before but they all only seemed to be very limited in the shapes they could handle. Btw, big congrats on the…
I can confirm @musashidan ' s problems with the Smart Delete (also set up at the X key heh) that it won't delete objects in Object mode, but I think I solved how to do this. Maxi's scripts that function in different modes, like for example QuickSelectionFace, upon being assigned a shortcut will normally be…
If you do create a thread in the blenderartists page, put the link in the first post; I'd love to see what script-wizardry-knowledge that community has to offer.
Nice work on the scripts! I have a question concerning Smart Extrude. Is it possible somehow to extrude exactly from the Gizmo's Axis? I think the standard keymapping in blender prevents that by disabling the non selected axis. And therefore currently It feels a bit unprecise as I seam to drag more like in screenspace and…