less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

32 строки
557 B

  1. import mv.ops
  2. import bpy
  3. class MVPanel(bpy.types.Panel):
  4. bl_idname="OBJECT_PT_MV_menu"
  5. bl_label="Macrovision"
  6. bl_space_type="VIEW_3D"
  7. bl_region_type="UI"
  8. bl_category = "Macrovision"
  9. @classmethod
  10. def poll(cls, context):
  11. return True
  12. def draw(self, context):
  13. layout = self.layout
  14. box = layout.box()
  15. box.label(text="Setup")
  16. box.operator("mv.config_collection")
  17. box = layout.box()
  18. box.label(text="Execute")
  19. box.operator("mv.export")
  20. clses = [
  21. MVPanel
  22. ]