Reply To: Why the SyncVar won’t update

Forum Archive Why the SyncVar won’t update Reply To: Why the SyncVar won’t update

#25194
Jonathan Gonzalez
Participant

    Usually when that happens you’ll probably see a message in the console. I recommend playing the game as the client in the editor while hosting in a stand alone game. That’ll show you any errors or warnings that the client game would have. More than likely what you’ll see is that you’re trying to call a server method without authority. Make sure that players have authority to do so. Also check that any updated SyncVar values are being changed on the host. If it’s not being changed on the clients but it is on the host then you know it’s a client issue. If it’s not being changed anywhere then you need to further look at why.