Skip to content

Releases: colyseus/colyseus-defold

0.10.2

23 Apr 00:33
Compare
Choose a tag to compare

Supports polymorphism

0.10.1

31 Mar 22:46
Compare
Choose a tag to compare

Compatible with room proxying available on [email protected]

0.10.0

24 Mar 02:29
Compare
Choose a tag to compare

New state serializer is now available!

See migration guide here: https://docs.colyseus.io/migrating/0.10/

0.9.10

14 Feb 16:45
7ad9f37
Compare
Choose a tag to compare
  • returns listener on eventemitter's on function.

Allows to do this:

local listener = room:on("message", function()
  -- ...
end)

room:off("message", listener)

0.9.9

13 Dec 20:04
Compare
Choose a tag to compare

Prevent crash when calling close()twice. #8

0.9.8

06 Dec 11:33
Compare
Choose a tag to compare

Compatibility with defold-websocket 1.5.0

0.9.7

05 Dec 19:26
Compare
Choose a tag to compare

Emit "close" when connect is not successful

0.9.6

04 Sep 17:32
Compare
Choose a tag to compare

Add a flag for auto-connection on client constructor.

Usage:

client = Colyseus.new("ws://localhost:4657", false)

-- manually tell when to connect
client:connect()

0.9.5

22 Jul 20:27
Compare
Choose a tag to compare

Include change.previous_value on "replace" operations

0.9.4

17 Jul 01:26
Compare
Choose a tag to compare
  • room:leave() now plays nicely with onLeave(client, consented) in the server-side.