armory/blender/arm/logicnode/logic/LN_is_none.py

18 lines
489 B
Python
Raw Normal View History

2017-04-08 20:05:35 +02:00
from arm.logicnode.arm_nodes import *
class IsNoneNode(ArmLogicTreeNode):
2020-09-23 22:12:25 +02:00
"""Runs the output if the input value is null."""
2017-04-08 20:05:35 +02:00
bl_idname = 'LNIsNoneNode'
bl_label = 'Is None'
arm_version = 1
2017-04-08 20:05:35 +02:00
def init(self, context):
super(IsNoneNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketShader', 'Value')
self.add_output('ArmNodeSocketAction', 'Out')
2017-04-08 20:05:35 +02:00
add_node(IsNoneNode, category=PKG_AS_CATEGORY)