generated from stilobique/BlenderTemplate
16 lines
536 B
Python
16 lines
536 B
Python
from .main import GraouPanel
|
|
|
|
|
|
class GRAOU_PT_setup(GraouPanel):
|
|
bl_idname = 'GRAOU_PT_setup'
|
|
bl_label = 'Setup Pipeline'
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
col = layout.column(align=True)
|
|
col.label(text='Main Config:')
|
|
col.operator('graou.build_scene', text='Init Scene', icon='OUTLINER')
|
|
col.prop(context.scene.graou_props, 'socket_collection', text='Use socket', toggle=True)
|
|
col.operator('graou.lighting', text='Set basic lighting', icon='OUTLINER_OB_LIGHT')
|