Hi. I followed your tutorial. Thanks a lot ! I have a question. I want a pie for extrude function. When i copy the command and define the class like: class MY_Extrude(bpy.types.Operator): bl_idname = "my.extrude" bl_label = "Extrude" bl_options = {"REGISTER", "UNDO"} def execute(self, context): bpy.ops.mesh.offset_edges() return {'FINISHED'} It works, but there is no option box and F9 doesn't work. Can you tell me how to do that ? Thanks(i tried forum, but no is answering. Probably too easy or something)
thank for sharing! the script works , but when i try to register the keymap under 3d view as you showed i have no second field Name: VIEW3D_MT_PIE_template... i cant call the pie menu its blender 3.2 - any idea?
why do they call pie menu? pie because python or pie because it is somehow related to a cake, a pie or 3.14? anybody explains to me. sorry i am just curious.
Great ! I have just a question, if I want to create another pie menu, what I need to change in the code about shortcuts ? If I use the same (bpy.ops.wm.call_menu_pie & VIEW3D_MT_PIE_template) there will be conflict... Thanks
Thank you. Very clearly explained the whole development, step by step.
Very helpfull. Thank you very much.
Thank you so much for this! How can I assign the numbers to the labels I want. for example bevel would be 1, smooth would be 2 etc.
thanks for taking it slowly to explain this. To a coding noob like me, it is just perfect!
Is it still working with blender 3.5?
@@milaneso01 I'm not using 3.5. But it should work... unless they updated the python version or something.
Wow!Please do more this video! Thank you so much! Looking forward to see more " Custom made your own Add on tutorial" ! thumbs up!
How would you add a tool like the clay strips brush to the menus? EDIT: and how would you reference more than one in the keymaps?
Hi Blender Bash, I'm Blender Bach. 😂
This is soooo helpful coming from Maya. Thanks!
Pleaseeeee, do more videos!!! ❤️❤️ I love them!!
Hi. I followed your tutorial. Thanks a lot ! I have a question. I want a pie for extrude function. When i copy the command and define the class like:
class MY_Extrude(bpy.types.Operator):
bl_idname = "my.extrude"
bl_label = "Extrude"
bl_options = {"REGISTER", "UNDO"}
def execute(self, context):
bpy.ops.mesh.offset_edges()
return {'FINISHED'}
It works, but there is no option box and F9 doesn't work. Can you tell me how to do that ? Thanks(i tried forum, but no is answering. Probably too easy or something)
Colour palette pie menu how to create
Can be make custom pie menu add on to use for parametric design?
Wow !! you have Amazing talent, Thanks❤️❤️❤️❤️❤️❤️❤️❤️❤️
Very well done, and helpful, thank you!
This was very useful, thank you!
So SO amazing. Thank you!
Thank you! this is just what I needed
Really good content, thanks for this :)
Quality tutorial, subscribed!
Hi, do you never make a video to download and use blendercam..?
Thank you for making this!
Can we make blender viewport like 3ds max
How can i make that but to work on other windows like timeline?
it's possible to specify a hotkey and editor type in which pie menu or other menu will work. there are fields in pie menu addon tab for that.
thanks :) Very useful :)
Is there a way I can use the Pie Menu Creator addon in Blender 3? I haven't been able to and it makes me so frustrated.
Thats why you should create your own addon.
i dont know. pie menu editor addon 1.18 works with blender 3.5.1 for me.
That is goooold video thank you!
thanks
thank for sharing! the script works , but when i try to register the keymap under 3d view as you showed i have no second field Name: VIEW3D_MT_PIE_template...
i cant call the pie menu its blender 3.2 - any idea?
I found out that you need to write into the first field -> wm.call_menu_pie
then the name Field appears :)
Thanks mann
why do they call pie menu? pie because python or pie because it is somehow related to a cake, a pie or 3.14? anybody explains to me. sorry i am just curious.
It's because of the cake 😊
Just like the pie chart
great! THX
with no coding skills...
few moments later. copy this and this paste this :(
snx!
that soy face kek
Great ! I have just a question, if I want to create another pie menu, what I need to change in the code about shortcuts ? If I use the same (bpy.ops.wm.call_menu_pie & VIEW3D_MT_PIE_template) there will be conflict... Thanks
Yes. You need to create another name
@@BlenderBash Thanks ;-)