Merge branch '240-adding-music-to-the-sequencer-isn-t-replicating' into 'develop'

Resolve "Adding music to the sequencer isn't replicating"

See merge request slumber/multi-user!159
This commit is contained in:
Swann Martinez 2021-11-09 09:29:58 +00:00
commit 80c81dc934
2 changed files with 1 additions and 2 deletions

View File

@ -64,7 +64,6 @@ def get_node_group_properties_identifiers(node_group):
continue
else:
props_ids.append((inpt.identifier, inpt.type))
logging.info(inpt.type)
if inpt.type in ['INT', 'VALUE', 'BOOLEAN', 'RGBA', 'VECTOR']:
props_ids.append((f"{inpt.identifier}_attribute_name",'STR'))

View File

@ -440,7 +440,7 @@ class BlScene(ReplicatedDatablock):
if seq.name not in sequences:
vse.sequences.remove(seq)
# Load existing sequences
for seq_data in sequences.value():
for seq_data in sequences.values():
load_sequence(seq_data, vse)
# If the sequence is no longer used, clear it
elif datablock.sequence_editor and not sequences: