|
|
|
|
|
by dabreegster
1732 days ago
|
|
Thanks for reading! I think rendering vehicles following each other would still require asking the simulation for positions, unless you replicate the logic in the "Exact positions" section. How would multiplayer synchronization factor in? That's an issue when multiple different clients in a network are all sending input to move something. Here we just have a single thread on one machine running the simulation. The simulation state could be broadcast over a network and rendered elsewhere, and there's still not any synchronization problems, because there's one source of truth. |
|
Yes, agreed the state could be broadcast and that would not be nearly as complicated as multiplayer sync'ing.