armory/blender/arm/logicnode/array/LN_array_contains.py
Moritz Brückner 96aa0ee890 Use custom sockets for default data types
This allows to listen for socket updates for the live patch system
2021-07-10 21:46:44 +02:00

15 lines
482 B
Python

from arm.logicnode.arm_nodes import *
class ArrayContainsNode(ArmLogicTreeNode):
"""Returns whether the given array contains the given value."""
bl_idname = 'LNArrayInArrayNode'
bl_label = 'Array Contains'
arm_version = 1
def init(self, context):
super(ArrayContainsNode, self).init(context)
self.add_input('ArmNodeSocketArray', 'Array')
self.add_input('ArmDynamicSocket', 'Value')
self.add_output('ArmBoolSocket', 'Contains')