generated from stilobique/BlenderTemplate
13 lines
290 B
Python
13 lines
290 B
Python
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'}
|