feat: collection insance offset support

Related to #105
This commit is contained in:
Swann
2020-08-24 17:49:17 +02:00
parent e4e09d63ff
commit 6475b4fc08
2 changed files with 18 additions and 4 deletions

View File

@ -165,8 +165,13 @@ class SessionStartOperator(bpy.types.Operator):
node_ref = client.get(node)
if node_ref.state == FETCHED:
node_ref.resolve()
for node in client._graph.list_ordered():
node_ref = client.get(node)
if node_ref.state == FETCHED:
node_ref.apply()
# Launch drawing module
if runtime_settings.enable_presence:
presence.renderer.run()