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

18 lines
509 B
Python
Raw Normal View History

2017-04-08 20:05:35 +02:00
from arm.logicnode.arm_nodes import *
class IsNotNoneNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Passes through its activation only if the plugged-in value is
2020-09-28 15:58:41 +02:00
not `null`.
@seeNode Is None"""
2017-04-08 20:05:35 +02:00
bl_idname = 'LNIsNotNoneNode'
2020-10-30 19:28:38 +01:00
bl_label = 'Is Not Null'
arm_version = 1
2017-04-08 20:05:35 +02:00
def init(self, context):
super(IsNotNoneNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketShader', 'Value')
2020-11-17 16:01:15 +01:00
2020-09-08 21:49:02 +02:00
self.add_output('ArmNodeSocketAction', 'Out')