Files
Blender-Fange-Pipeline/Fange_Pipeline/operators/lighting.py
T

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'}