We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d6f20b commit 1e9f020Copy full SHA for 1e9f020
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@colyseus/schema",
3
- "version": "4.0.7",
+ "version": "4.0.8",
4
"description": "Binary state serializer with delta encoding for games",
5
"type": "module",
6
"bin": {
src/encoder/ChangeTree.ts
@@ -23,7 +23,8 @@ declare global {
23
}
24
25
export interface IRef {
26
- [$changes]?: ChangeTree;
+ // FIXME: we only commented this out to allow mixing @colyseus/schema bundled types with server types in Cocos Creator
27
+ // [$changes]?: ChangeTree;
28
[$refId]?: number;
29
[$getByIndex]?: (index: number, isEncodeAll?: boolean) => any;
30
[$deleteByIndex]?: (index: number) => void;
0 commit comments