From 13b4ba4db48334980685fc37bf81b50623b3eccb Mon Sep 17 00:00:00 2001 From: morrisoran Date: Wed, 7 May 2025 04:04:03 +0800 Subject: [PATCH] Update spring_bones.py fix __init__ to make plugin work on blender 4.4+ --- spring_bones.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring_bones.py b/spring_bones.py index 7a9a265..674fdc9 100644 --- a/spring_bones.py +++ b/spring_bones.py @@ -575,7 +575,8 @@ class SB_OT_spring_modal(bpy.types.Operator): bl_idname = "sb.spring_bone" bl_label = "spring_bone" - def __init__(self): + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) self.timer_handler = None def modal(self, context, event):