Empty Pie Menu Blender

This is the basic structure of a Pie Menu in Blender using Python import bpy from bpy.types import Menu, Operator bl_info = { "name": "", "author": "", "version": (0, 0, 0, 1), "description": "", "blender": (2, 80, 0), "category": "3D view" } class VIEW3D_MT_PIE_template(Menu): # label is displayed at the center of the pie menu. bl_label = "Operations" bl_idname="mesh.mypie" def draw(self, context): layout = self.layout pie = layout.menu_pie() pie.operator("auto.smooth") ​ def register(): ​ bpy....

12 June 2021 · 1 min · Mark
Decal Machine

Busy with kits

Over the last few weeks I have been busy in Blender using the Decalmachine add-on to create some decal textures from Blender. You can find all my assets over at Gumroad. For more information on the assets for Blender and Modo just visit the link above.

20 February 2021 · 1 min · Mark