Make a very basic plugin setup

This commit is contained in:
2024-05-04 17:33:16 +02:00
parent aec4ee2a99
commit e9858cb55c
5 changed files with 143 additions and 103 deletions
+19
View File
@@ -0,0 +1,19 @@
import bpy
class GRAOU_PT_panel(bpy.types.Panel):
bl_idname = 'GRAOU_PT_MAIN'
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_label = 'Pipeline'
bl_category = 'Graou Studio'
def draw(self, context):
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False
layout.label(text='Building', icon='WORLD_DATA')
layout.operator('graou.building_export')