diff --git a/leenkx/blender/lnx/logicnode/lnx_sockets.py b/leenkx/blender/lnx/logicnode/lnx_sockets.py index 8c22599..85fc0ab 100644 --- a/leenkx/blender/lnx/logicnode/lnx_sockets.py +++ b/leenkx/blender/lnx/logicnode/lnx_sockets.py @@ -88,7 +88,7 @@ class LnxAnimActionSocket(LnxCustomSocket): default_value_raw: PointerProperty(name='Action', type=bpy.types.Action, update=_on_update_socket) def __init__(self): - super().__init__() + super().__init__(*args, **kwargs) if self.default_value_get is not None: self.default_value_raw = self.default_value_get self.default_value_get = None @@ -497,7 +497,7 @@ class LnxObjectSocket(LnxCustomSocket): default_value_raw: PointerProperty(name='Object', type=bpy.types.Object, update=_on_update_socket) def __init__(self): - super().__init__() + super().__init__(*args, **kwargs) if self.default_value_get is not None: self.default_value_raw = self.default_value_get self.default_value_get = None