original readme updated

This commit is contained in:
mischa 2023-08-16 18:09:18 +02:00
parent b7fad3e672
commit 877288c3a0

View File

@ -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!