feat: prevent updates in sclupt mode
This commit is contained in:
@ -193,7 +193,7 @@ class BlMesh(ReplicatedDatablock):
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def needs_update(datablock: object, data: dict) -> bool:
|
def needs_update(datablock: object, data: dict) -> bool:
|
||||||
return 'EDIT' not in bpy.context.mode \
|
return ('EDIT' not in bpy.context.mode and bpy.context.mode != 'SCULPT') \
|
||||||
or get_preferences().sync_flags.sync_during_editmode
|
or get_preferences().sync_flags.sync_during_editmode
|
||||||
|
|
||||||
_type = bpy.types.Mesh
|
_type = bpy.types.Mesh
|
||||||
|
Submodule multi_user/libs/replication updated: dd15f6eae0...f0745647e0
Reference in New Issue
Block a user