Update Files
This commit is contained in:
15
leenkx/blender/lnx/logicnode/array/LN_array_concat.py
Normal file
15
leenkx/blender/lnx/logicnode/array/LN_array_concat.py
Normal file
@ -0,0 +1,15 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class ArrayConcatNode(LnxLogicTreeNode):
|
||||
"""Join arrays."""
|
||||
|
||||
bl_idname = 'LNArrayConcatNode'
|
||||
bl_label = 'Array Concat'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketArray', 'Array')
|
||||
self.add_input('LnxNodeSocketArray', 'Array')
|
||||
|
||||
self.add_output('LnxNodeSocketArray', 'Array')
|
||||
self.add_output('LnxIntSocket', 'Length')
|
Reference in New Issue
Block a user