You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
330 B
12 lines
330 B
import bpy
|
|
from .manifest import MANIFEST
|
|
|
|
class DesignautoMenu(bpy.types.Menu):
|
|
bl_label = "Batch Design Auto"
|
|
bl_idname = "VIEW3D_MT_DesignautoMenu"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
for item in MANIFEST:
|
|
if item.operation is not None:
|
|
item.operation(layout)
|
|
|