Hello everyone, is there any client made for LÖVE engine? If yes, can I get a link?
Client for LÖVE engine
As discussed on Discord, we only have Defold support right now, which is written in Lua.
There are two pieces that are highly tied to Defold on the implementation:
- The WebSocket connection: https://github.com/colyseus/colyseus-defold/blob/master/colyseus/connection.lua
- The local storage: https://github.com/colyseus/colyseus-defold/blob/master/colyseus/storage.lua
For the WebSocket in LÖVE, I've found this implementation that may work: https://github.com/holywyvern/love-ws
The entire connection.lua
from Colyseus would need to be updated to use it.