From eed26c38039cdc7915f348db5de107bc68f5ea80 Mon Sep 17 00:00:00 2001 From: Christopher Pope Date: Thu, 6 Oct 2022 10:02:15 +0100 Subject: [PATCH] Updating docs page in 2D space shooter Updating docs page in 2D space shooter which has a reference to an unconfirmed feature (Prediction) --- docs/learn/bitesize/bitesize-spaceshooter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learn/bitesize/bitesize-spaceshooter.md b/docs/learn/bitesize/bitesize-spaceshooter.md index 7b3a71e37..0b4cdbc8c 100644 --- a/docs/learn/bitesize/bitesize-spaceshooter.md +++ b/docs/learn/bitesize/bitesize-spaceshooter.md @@ -12,7 +12,7 @@ The movement in 2DSpaceShooter is physics based. The player object is a dynamic The client sends inputs in the form of RPCs to the server. The server then uses those inputs to adjust the throttle and turn values of the player. -This method of running physics makes sure that there are no desyncs or other physics issues between the client and server, but it introduces more latency. With future prediction support of Netcode, the latency will no longer be an issue which makes this the best choice of a movement model for a game like this. +This method of running physics makes sure that there are no desyncs or other physics issues between the client and server, but it introduces more latency. ## Player Health