From 877288c3a0d4b6f8ef976d9e6f6a2a0fec5b2260 Mon Sep 17 00:00:00 2001 From: mischa Date: Wed, 16 Aug 2023 18:09:18 +0200 Subject: [PATCH] original readme updated --- Assets/Mirror/Examples/Billiards/_Readme.txt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Assets/Mirror/Examples/Billiards/_Readme.txt b/Assets/Mirror/Examples/Billiards/_Readme.txt index dd594d3d2..1008603f1 100644 --- a/Assets/Mirror/Examples/Billiards/_Readme.txt +++ b/Assets/Mirror/Examples/Billiards/_Readme.txt @@ -3,9 +3,8 @@ Mouse drag the white ball to apply force. Billiards is surprisingly easy to implement, which makes this a great demo for beginners! -Additionally, this demo will allow us to test Client Side Prediction & Reconciliation: -- currently, CmdApplyForce is sent to server, and clients see the effect a bit later (latency) -- in the future, prediction will show the effect immediately with (ideally) very little corrections +Hits are sent to the server with a [Command]. +There will always be some latency for the results to show. -The demo is intentionally kept extremely simple without any rules. -This way we can apply force and test physics without much wait time. +To solve this, there's another BilliardsPredicted demo which uses prediction & reconciliation. +This demo however is meant for complete beginners to learn Mirror! \ No newline at end of file