Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/MultiplayCore/synchronizers/MPTransformSync.gd
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func _physics_process(delta):

# Sync Rotation
if sync_rotation:
if _sync_type == "2d" and _parent.rotation - _net_rotation > rotation_sensitivity:
if _sync_type == "2d" and abs(_parent.rotation - _net_rotation) > rotation_sensitivity:
rpc("_recv_transform", "rot", _parent.rotation)

if _sync_type == "3d" and (_parent.rotation - _net_rotation).length() > rotation_sensitivity:
Expand Down