15 lines
478 B
Python
15 lines
478 B
Python
|
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')
|