generated from stilobique/BlenderTemplate
15 lines
308 B
Python
15 lines
308 B
Python
import bpy
|
|
|
|
|
|
class GRAOU_PT_setup(bpy.types.Panel):
|
|
bl_idname = 'GRAOU_PT_setup'
|
|
bl_space_type = 'VIEW_3D'
|
|
bl_region_type = 'UI'
|
|
bl_label = 'Setup Pipeline'
|
|
bl_category = 'Graou Studio'
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.label(text='Main Config:')
|