armory/blender/arm/logicnode/logic/LN_is_null.py
Lubos Lenco 979844fc6e
Merge pull request #2013 from knowledgenude/master
More renames and cleanups
2020-11-24 09:52:09 +01:00

19 lines
508 B
Python

from arm.logicnode.arm_nodes import *
class IsNoneNode(ArmLogicTreeNode):
"""Passes through its activation only if the plugged-in value is
`null` (no value).
@seeNode Is Not Null"""
bl_idname = 'LNIsNoneNode'
bl_label = 'Is Null'
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')