fix(rcf): user data initialisation is now client side

This commit is contained in:
Swann Martinez
2019-04-17 15:01:15 +02:00
parent 214772e9d3
commit 7c354778ce
5 changed files with 34 additions and 16 deletions

View File

@ -42,7 +42,7 @@ def load(key, value):
load_default(target=target, data=value,
create=True, type=target_type)
elif target_type == 'Client':
pass
load_client(key.split('/')[1],value)
def resolve_bpy_path(path):
@ -60,7 +60,15 @@ def resolve_bpy_path(path):
return item
def load_client(client=None,data=None):
if client and data:
# Draw client
#Load selected object
if data['active_object']:
print("toto")
pass
def load_mesh(target=None, data=None, create=False):
import bmesh