Hello,
I created a BatonProperty and set a 1 level object for it in Room console.
I can retrieve this value fine, but I am unable to change it, even with OWNER permission, any tips please? Here is the code:
trace ("BATON SYNC"+baton_game.value.state);
//This retrieves the value fine before trying to change it
// After taking ownership of the Baton I call:
baton_game.value.state="STARTED";
trace ("BATON SYNC"+baton_game.value.state);
//This retrieves the new value fine after sync
But when I look at the room console, the value is unchanged. How is that possible? I tried this even with OWNER permission,