generated from stilobique/BlenderTemplate
Add basic operator to setup a light env
This commit is contained in:
@@ -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'}
|
||||
Reference in New Issue
Block a user