16 lines
392 B
Python
16 lines
392 B
Python
|
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')
|
||
|
|