forked from LeenkxTeam/LNXSDK
t3du - Camera Render Filter
This commit is contained in:
@ -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')
|
Reference in New Issue
Block a user