@endel Wow thanks so much for the quick and helpful response! Looking forward to diving deeper into the framework :)
0
Reputation
2
Posts
975
Profile views
0
Followers
0
Following
Posts made by zzmarkzz321
RE: State Sync change in objects
posted in Questions & Help •
State Sync change in objects
posted in Questions & Help •
Hi! I'm still a bit new to colyseus, so I apologize if this question might sound dumb:
I'm trying to synchronize my server and client's state with an object
this.setState({
key: {}
})
On the server, I have a piece of logic that handles messages from the client and modify the entire object, key.
When listening for changes on the client, nothing comes up:
this.room.listen('key', change => {
console.log('key state has changed');
});
unless I do:
this.room.listen('key/:id', change => {
console.log('key state has changed');
});
But, I don't want individual attributes of the object that changed. I want the entire object.
Unless the whole point of state sync is to synchronize small changes, then would I just broadcast the new Key Object as a work around?
Any help or suggestions would be greatly appreciated!