generated from stilobique/BlenderTemplate
Make the outline config ops
This commit is contained in:
@@ -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'}
|
||||
Reference in New Issue
Block a user