[1260] Synced variables referenced externally in other scripts occasionally returns default value
tracked
AltCentauri
Occasionally, when attempting to reference synced variables in other scripts when not the owner of that data, it will return the default value rather than the current value.
The current workaround for this is to save all synced data as separate local variables and reference those externally, and only use the synced variables in OnPreserialization, OnDeserialization, and OnPostSerialization.
This was an issue I first noticed way back in June 2021, but I was never able to consistently have it break until now.
In this example world, the Dealer script is attempting to reference the GameActive boolean synced variable from the Controller script in OnDeserialization, returning if false to ensure data is not ran when the table is not active. However, for everyone except the owner of the controller script, the GameActive variable always returns the default false value, rather than the current value.
To test, join the table with one user, and with the person in control, set the game type to manual mode and start a match. Provided debug logs in the code will show the GameActive state on every client.
Log In
AltCentauri
Really hoping we can get a fix for this eventually, have just ran into it again in my current project and it's a REALLY annoying problem to debug.
Taranja
I am also experiencing a similar problem with synced variables. I have a game world that heavily makes use of synced variables being referenced in other scripts. Since the build 1260 update, when trying to reference synced variables in other scripts such as. the array of player IDs from the main game script referenced in the vote manager script, everyone except the master will not receive the current value when the master is calculating votes. Since the synced variables are not updated to everyone in the network, it essentially breaks my world and renders it nearly unplayable for everyone.
My world was working fine in terms of synced variables before the 1260 update. I wonder what changes in Udon networking caused synced variables to return the wrong value for everyone else in the network?
Phasedragon
tracked bug
Not a lot to go on here but we can at least take a look.