generated from stilobique/BlenderTemplate
13 lines
324 B
Python
13 lines
324 B
Python
from .main import GraouPanel
|
|
|
|
|
|
class GraouPanel_asset(GraouPanel):
|
|
bl_idname = 'GRAOU_PT_asset'
|
|
bl_label = 'Generate Assets'
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.label(text='Asset:')
|
|
layout.operator('graou.make_collision', text='Generate collision', icon='MOD_PHYSICS')
|