Update Files
This commit is contained in:
14
leenkx/blender/lnx/logicnode/trait/LN_get_object_trait.py
Normal file
14
leenkx/blender/lnx/logicnode/trait/LN_get_object_trait.py
Normal file
@ -0,0 +1,14 @@
|
||||
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')
|
Reference in New Issue
Block a user