diff --git a/Assets/Mirror/Components/ForecastRigidbody/ForecastRigidbody.cs b/Assets/Mirror/Components/ForecastRigidbody/ForecastRigidbody.cs index 2de531b6a..8c4a12b4b 100644 --- a/Assets/Mirror/Components/ForecastRigidbody/ForecastRigidbody.cs +++ b/Assets/Mirror/Components/ForecastRigidbody/ForecastRigidbody.cs @@ -437,6 +437,12 @@ private void OnDrawGizmos() // show the latest blending end position guess if (state == ForecastState.BLENDING) { + // show blending start position. + // helps debug the initial jump from prediction to blending. + Gizmos.color = predictingColor; + Gizmos.DrawWireCube(predictionEndPosition, bounds.size); + + // show current estimate if (followingStartPositionEstimate.HasValue) { Gizmos.color = blendingGuessColor;