Hi, I am reading the official Multiplayer chat example capx.
Assume there are two players (peers) send their message at the same time.
1. The message first show at local text area, then send it to host.
2. host will broadcast received message to all peers
3. Peers will show the received message to local text area.
For example player1 send "P1 say hi", player2 send "P2 say hi". After these 3 steps,
The text area of player1 will be
[quote:1cqlqj4y]P1 say hi
P2 say hi
But the the text area of player2 will be
[quote:1cqlqj4y]P2 say hi
P1 say hi
Other peers might be the same as player1, or player2 .
The sequence of chat message is different between player1 an player2 .
Is it right or do I miss something?