forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
12
leenkx/blender/lnx/logicnode/logic/LN_invert_boolean.py
Normal file
12
leenkx/blender/lnx/logicnode/logic/LN_invert_boolean.py
Normal file
@ -0,0 +1,12 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class NotNode(LnxLogicTreeNode):
|
||||
"""Inverts the plugged-in boolean. If its input is `true` it outputs `false`."""
|
||||
bl_idname = 'LNNotNode'
|
||||
bl_label = 'Invert Boolean'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxBoolSocket', 'Bool In')
|
||||
|
||||
self.add_output('LnxBoolSocket', 'Bool Out')
|
Reference in New Issue
Block a user