Prediction: force syncInterval=0 for now to reduce risks of projects misconfiguring this

This commit is contained in:
mischa 2024-01-15 21:13:11 +01:00
parent 98061c0f59
commit 1791d29da2

View File

@ -626,6 +626,11 @@ protected override void OnValidate()
// force syncDirection to be ServerToClient // force syncDirection to be ServerToClient
syncDirection = SyncDirection.ServerToClient; syncDirection = SyncDirection.ServerToClient;
// state should be synced immediately for now.
// later when we have prediction fully dialed in,
// then we can maybe relax this a bit.
syncInterval = 0;
} }
} }
} }