schema
schema copied to clipboard
An incremental binary state serializer with delta encoding for games.
Hi, this seems to work. I'd be happy to discuss and change the solution and code. - I might have abused the `Property`'s type as an initializer for an enum...
Hi i'm using colyseus since a bit but now i'm getting this weird error. As i remove anything from a state that uses ArrayMap on Leave, on the next join...
I think that something useful would be to be able to map enum or initial values of the variables. In case you have message exchanges, you don't have to duplicate...
Thanks again @endel for the great multiplayer game framework! If you would provide some basic guidance on this enhancement I would be happy to implement it in a PR. #...
hello dear frineds im trying to shuffle MapSchema but it automaticly sorting list by key here is my code: let shuffleKeys = []; this.players.forEach((player, key) => { shuffleKeys.push(key); }); shuffleKeys...
schema.h --- cpp version out of date, parsing error. Can you update it, please.
The code I have is something along the lines of ```javascript class SubSchema extends Schema {...} class State extends Schema { constructor() { super(); this.activePlayerIndex = 0; this.playerIds= new ArraySchema("1",...
Just a proposal for extending defineTypes to allow for the definition of filters. This is really just to continue the work to make working with the annotation in JS more...
I wrote a minimal naive implemtation for a lifo extension of array schema with a basic test. Feel free to review it and give me your feedback about this. I...
Colyseus is amazing. Thanks @endel for your work and your community support. # Summary This is a request for a First In First Out Array Schema extension ## Motivation Lets...