armory/blender/arm/logicnode/array/LN_array_contains.py
2021-07-20 20:53:37 +02:00

14 lines
433 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 arm_init(self, context):
self.add_input('ArmNodeSocketArray', 'Array')
self.add_input('ArmDynamicSocket', 'Value')
self.add_output('ArmBoolSocket', 'Contains')