Update Files
This commit is contained in:
12
leenkx/blender/lnx/logicnode/trait/LN_get_object_traits.py
Normal file
12
leenkx/blender/lnx/logicnode/trait/LN_get_object_traits.py
Normal file
@ -0,0 +1,12 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class GetObjectTraitsNode(LnxLogicTreeNode):
|
||||
"""Returns all traits from the given object."""
|
||||
bl_idname = 'LNGetObjectTraitsNode'
|
||||
bl_label = 'Get Object Traits'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketObject', 'Object')
|
||||
|
||||
self.add_output('LnxNodeSocketArray', 'Traits')
|
Reference in New Issue
Block a user