Bläddra i källkod

Fix: Node Groups not updating properly in schema

Joseph Brandenburg 8 månader sedan
förälder
incheckning
622c131a51
1 ändrade filer med 4 tillägg och 2 borttagningar
  1. 4 2
      base_definitions.py

+ 4 - 2
base_definitions.py

@@ -106,9 +106,11 @@ class SchemaTree(NodeTree):
     bl_idname = 'SchemaTree'
     bl_label = "Rigging Nodes Schema"
     bl_icon = 'RIGID_BODY_CONSTRAINT'
-    
-    do_live_update:BoolProperty(default=False) # this is only needed for consistency, it is never used.
 
+    # these are only needed for consistent interface, but should not be used
+    do_live_update:BoolProperty(default=True) # default to true so that updates work
+    is_executing:BoolProperty(default=False)
+    is_exporting:BoolProperty(default=False)
 
     if bpy.app.version >= (3, 2):  # in 3.1 this can lead to a crash
         @classmethod