feat: uuid based selection

This commit is contained in:
Swann
2019-10-08 21:48:45 +02:00
parent e047874dbd
commit 5e1f019f24
5 changed files with 8 additions and 15 deletions

View File

@ -93,7 +93,7 @@ def get_armature_edition_context(armature):
def get_selected_objects(scene):
return [obj.name for obj in scene.objects if obj.select_get()]
return [obj.uuid for obj in scene.objects if obj.select_get()]
def load_dict(src_dict, target):