forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
15
leenkx/blender/lnx/logicnode/array/LN_array_compare.py
Normal file
15
leenkx/blender/lnx/logicnode/array/LN_array_compare.py
Normal file
@ -0,0 +1,15 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class ArrayCompareNode(LnxLogicTreeNode):
|
||||
"""Compare arrays."""
|
||||
|
||||
bl_idname = 'LNArrayCompareNode'
|
||||
bl_label = 'Array Compare'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketArray', 'Array')
|
||||
self.add_input('LnxNodeSocketArray', 'Array')
|
||||
|
||||
self.add_output('LnxBoolSocket', 'Compare')
|
||||
|
Reference in New Issue
Block a user