feat: progression on session mamnagment

This commit is contained in:
Swann Martinez
2020-01-20 18:55:03 +01:00
parent ff932b0cdf
commit 07df42d087
5 changed files with 28 additions and 9 deletions

View File

@ -56,11 +56,12 @@ class SessionStartOperator(bpy.types.Operator):
# TODO: Sync server clients
users.clear()
#load our infos into the local user list
local_user = users.add()
local_user.name = 'localhost'
local_user.username = settings.username
local_user.current_frame = context.scene.frame_current
# #load our infos into the local user list
# local_user = users.add()
# local_user.name = 'localhost'
# local_user.username = settings.username
# local_user.current_frame = context.scene.frame_current
# save config
settings.save(context)