generated from stilobique/BlenderTemplate
17 lines
373 B
Python
17 lines
373 B
Python
import bpy
|
|
|
|
from ..models import Outline
|
|
|
|
|
|
class ConfigBlendScene(bpy.types.Operator):
|
|
"""Init the opened blend scene"""
|
|
bl_idname = 'graou.build_scene'
|
|
bl_label = 'Config or update the outline'
|
|
|
|
def __init__(self):
|
|
self._outline = Outline()
|
|
|
|
def execute(self, context):
|
|
print(f'[Pipeline] Generate outline')
|
|
return {'FINISHED'}
|