Repe [T3DU] and Moises Jpelaez updates

This commit is contained in:
2026-05-12 23:54:06 -07:00
parent 6b404f9da6
commit 39091e8db3
147 changed files with 5539 additions and 1750 deletions

View File

@ -88,7 +88,7 @@ class LnxAnimActionSocket(LnxCustomSocket):
default_value_raw: PointerProperty(name='Action', type=bpy.types.Action, update=_on_update_socket)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
super(LnxAnimActionSocket, self).__init__(*args, **kwargs)
if self.default_value_get is not None:
self.default_value_raw = self.default_value_get
self.default_value_get = None
@ -510,7 +510,7 @@ class LnxObjectSocket(LnxCustomSocket):
default_value_raw: PointerProperty(name='Object', type=bpy.types.Object, update=_on_update_socket)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
super(LnxObjectSocket, self).__init__(*args, **kwargs)
if self.default_value_get is not None:
self.default_value_raw = self.default_value_get
self.default_value_get = None