forked from LeenkxTeam/LNXSDK
12 lines
458 B
Python
12 lines
458 B
Python
|
from lnx.logicnode.lnx_nodes import *
|
||
|
|
||
|
class VolumetricLightGetNode(LnxLogicTreeNode):
|
||
|
"""Returns the volumetric light post-processing settings."""
|
||
|
bl_idname = 'LNVolumetricLightGetNode'
|
||
|
bl_label = 'Get Volumetric Light Settings'
|
||
|
lnx_version = 1
|
||
|
|
||
|
def lnx_init(self, context):
|
||
|
self.add_output('LnxColorSocket', 'Air Color')
|
||
|
self.add_output('LnxFloatSocket', 'Air Turbidity')
|
||
|
self.add_output('LnxIntSocket', 'Steps')
|