t3du - Camera Render Filter

This commit is contained in:
2025-06-12 22:21:24 +00:00
parent 5057f2b946
commit e84d6ada84

View File

@ -0,0 +1,15 @@
from lnx.logicnode.lnx_nodes import *
class GetCameraRenderFilterNode(LnxLogicTreeNode):
"""
Gets Camera Render Filter array with the names of the cameras
that can render the mesh. If null all cameras can render the mesh.
"""
bl_idname = 'LNGetCameraRenderFilterNode'
bl_label = 'Get Object Camera Render Filter'
lnx_section = 'camera'
lnx_version = 1
def lnx_init(self, context):
self.add_input('LnxNodeSocketObject', 'Object')
self.add_output('LnxNodeSocketArray', 'Array')