refactor: enable partial delta based replication

This commit is contained in:
Swann
2021-06-11 15:28:37 +02:00
parent 1fc25412ac
commit e9b4afb440
3 changed files with 3 additions and 1 deletions

View File

@ -90,6 +90,7 @@ class BlCollection(ReplicatedDatablock):
bl_check_common = True bl_check_common = True
bl_reload_parent = False bl_reload_parent = False
use_delta = True
@staticmethod @staticmethod
def construct(data: dict) -> object: def construct(data: dict) -> object:

View File

@ -373,6 +373,7 @@ def load_sequence(sequence_data: dict,
class BlScene(ReplicatedDatablock): class BlScene(ReplicatedDatablock):
is_root = True is_root = True
use_delta = True
bl_id = "scenes" bl_id = "scenes"
bl_class = bpy.types.Scene bl_class = bpy.types.Scene