merge upstream

This commit is contained in:
2025-06-27 22:31:19 +00:00
4 changed files with 51 additions and 7 deletions

View File

@ -0,0 +1,14 @@
from lnx.logicnode.lnx_nodes import *
class SetLightShadowNode(LnxLogicTreeNode):
"""Sets the shadow boolean of the given light."""
bl_idname = 'LNSetLightShadowNode'
bl_label = 'Set Light Shadow'
lnx_version = 1
def lnx_init(self, context):
self.add_input('LnxNodeSocketAction', 'In')
self.add_input('LnxNodeSocketObject', 'Light')
self.add_input('LnxBoolSocket', 'Shadow')
self.add_output('LnxNodeSocketAction', 'Out')