Add basic operator to setup a light env

This commit is contained in:
2024-05-31 10:10:45 +02:00
parent 30531affba
commit e380e894d7
3 changed files with 17 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
import bpy
class ConfigLighting(bpy.types.Operator):
"""Add or conform a lighting build"""
bl_idname = 'graou.lighting'
bl_label = 'Config or update a lighting'
def execute(self, context):
print(f'[Pipeline] Start lighting operator')
return {'FINISHED'}