armory/blender/arm/logicnode/logic/LN_is_none.py
2020-09-23 17:12:25 -03:00

18 lines
489 B
Python

from arm.logicnode.arm_nodes import *
class IsNoneNode(ArmLogicTreeNode):
"""Runs the output if the input value is null."""
bl_idname = 'LNIsNoneNode'
bl_label = 'Is None'
arm_version = 1
def init(self, context):
super(IsNoneNode, self).init(context)
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketShader', 'Value')
self.add_output('ArmNodeSocketAction', 'Out')
add_node(IsNoneNode, category=PKG_AS_CATEGORY)