feat(halpers): started to add basic armature support

This commit is contained in:
Swann Martinez
2019-05-03 14:55:18 +02:00
parent 13915df48b
commit 44da21f825
4 changed files with 79 additions and 19 deletions

View File

@ -28,10 +28,10 @@ server = None
context = None
update_list = {}
SUPPORTED_DATABLOCKS = ['collections', 'meshes', 'objects',
'materials', 'textures', 'lights', 'cameras', 'actions', 'armatures', 'grease_pencils']
SUPPORTED_TYPES = ['Material',
'Texture', 'Light', 'Camera', 'Mesh', 'Grease Pencil', 'Object', 'Action', 'Armature', 'Collection', 'Scene']
SUPPORTED_DATABLOCKS = ['collections','armatures', 'meshes', 'objects',
'materials', 'textures', 'lights', 'cameras', 'actions', 'grease_pencils']
SUPPORTED_TYPES = [ 'Armature', 'Material',
'Texture', 'Light', 'Camera', 'Mesh', 'Grease Pencil', 'Object', 'Action', 'Collection', 'Scene']
# UTILITY FUNCTIONS