armory/blender/arm/logicnode/logic/LN_null.py
2020-10-30 15:28:38 -03:00

12 lines
343 B
Python

from arm.logicnode.arm_nodes import *
class NoneNode(ArmLogicTreeNode):
"""A `null` value that can be used in comparisons and conditions."""
bl_idname = 'LNNoneNode'
bl_label = 'Null'
arm_version = 1
def init(self, context):
super(NoneNode, self).init(context)
self.add_output('NodeSocketShader', 'Null')