generated from stilobique/BlenderTemplate
23 lines
560 B
Python
23 lines
560 B
Python
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='Collision', icon='WORLD_DATA')
|
|
layout.operator('graou.make_collision')
|
|
|
|
layout.label(text='Building', icon='WORLD_DATA')
|
|
layout.operator('graou.building_export')
|
|
|