Make the outline config ops

This commit is contained in:
2024-05-09 00:53:57 +02:00
parent 15df44a0eb
commit 6cf3d224d2
5 changed files with 48 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
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'}