Update leenkx/blender/lnx/logicnode/logic/LN_gate.py

This commit is contained in:
Onek8 2025-04-03 10:03:25 +00:00
parent 48d28f6873
commit 38595db46b

View File

@ -38,8 +38,8 @@ class GateNode(LnxLogicTreeNode):
update=remove_extra_inputs)
property1: HaxeFloatProperty('property1', name='Tolerance', description='Precision for float compare', default=0.0001)
def __init__(self):
super(GateNode, self).__init__()
def __init__(self, *args, **kwargs):
super(GateNode, self).__init__(*args, **kwargs)
array_nodes[str(id(self))] = self
def lnx_init(self, context):