feat: library support ground work

This commit is contained in:
Swann Martinez
2019-08-29 18:23:29 +02:00
parent 8c1ef3434a
commit fd4d0d2398
6 changed files with 82 additions and 5 deletions

View File

@ -132,9 +132,15 @@ class SessionStartOperator(bpy.types.Operator):
delayables.append(delayable.ClientUpdate(
client_uuid=settings.user_uuid))
for node in client.list():
try:
client.commit(node)
except:
continue
# Push all added values
client.push()
# Launch drawing module
if settings.enable_presence:
presence.renderer.run()