LNXSDK/leenkx/blender/lnx/logicnode/trait/LN_get_object_trait.py

15 lines
478 B
Python
Raw Normal View History

2025-01-22 16:18:30 +01:00
from lnx.logicnode.lnx_nodes import *
class GetTraitNode(LnxLogicTreeNode):
"""Searches for a trait with the specified name which is applied to the
given object and returns that trait."""
bl_idname = 'LNGetTraitNode'
bl_label = 'Get Object Trait'
lnx_version = 1
def lnx_init(self, context):
self.add_input('LnxNodeSocketObject', 'Object')
self.add_input('LnxStringSocket', 'Name')
self.add_output('LnxDynamicSocket', 'Trait')