[Bf-extensions-cvs] [f156a124] blender-v2.90-release: Bone Selection Sets: Make all property definitions Library Overridable

Demeter Dzadik noreply at git.blender.org
Tue Jul 28 11:39:09 CEST 2020


Commit: f156a1248b974454e0cc20b8f0e04b1434d6293b
Author: Demeter Dzadik
Date:   Tue Jul 28 11:38:53 2020 +0200
Branches: blender-v2.90-release
https://developer.blender.org/rBAf156a1248b974454e0cc20b8f0e04b1434d6293b

Bone Selection Sets: Make all property definitions Library Overridable

Without this, the addon simply doesn't work on library overridden rigs, since all the addon's interface is grayed out with an error message saying the properties are not overridable.

Reviewed By: mont29

Differential Revision: https://developer.blender.org/D8403

===================================================================

M	bone_selection_sets.py

===================================================================

diff --git a/bone_selection_sets.py b/bone_selection_sets.py
index 8e07f418..86338da2 100644
--- a/bone_selection_sets.py
+++ b/bone_selection_sets.py
@@ -50,13 +50,13 @@ from bpy.props import (
 # Note: bones are stored by name, this means that if the bone is renamed,
 # there can be problems. However, bone renaming is unlikely during animation.
 class SelectionEntry(PropertyGroup):
-    name: StringProperty(name="Bone Name")
+    name: StringProperty(name="Bone Name", override={'LIBRARY_OVERRIDABLE'})
 
 
 class SelectionSet(PropertyGroup):
-    name: StringProperty(name="Set Name")
-    bone_ids: CollectionProperty(type=SelectionEntry)
-    is_selected: BoolProperty(name="Is Selected")
+    name: StringProperty(name="Set Name", override={'LIBRARY_OVERRIDABLE'})
+    bone_ids: CollectionProperty(type=SelectionEntry, override={'LIBRARY_OVERRIDABLE'})
+    is_selected: BoolProperty(name="Is Selected", override={'LIBRARY_OVERRIDABLE'})
 
 
 # UI Panel w/ UIList ##########################################################
@@ -545,12 +545,14 @@ def register():
     bpy.types.Object.selection_sets = CollectionProperty(
         type=SelectionSet,
         name="Selection Sets",
-        description="List of groups of bones for easy selection"
+        description="List of groups of bones for easy selection",
+        override={'LIBRARY_OVERRIDABLE'}
     )
     bpy.types.Object.active_selection_set = IntProperty(
         name="Active Selection Set",
         description="Index of the currently active selection set",
-        default=0
+        default=0,
+        override={'LIBRARY_OVERRIDABLE'}
     )
 
     # Add shortcuts to the keymap.



More information about the Bf-extensions-cvs mailing list