Hi,
I'm working on a tile based game and now I need to find how to make collisions.
I'm trying to find a good engine that can run on node and can be used with colyseus.io
Does someone has a good recommendation.
Thank you
Hi,
I'm working on a tile based game and now I need to find how to make collisions.
I'm trying to find a good engine that can run on node and can be used with colyseus.io
Does someone has a good recommendation.
Thank you
Hey @ellipticaldoor!
There are a couple of options out there. This one looks perfect: https://github.com/Sinova/Collisions (haven't used yet, though)
Depending on what your gameplay looks like, you can use a pathfinding library and avoid checking collisions, since the path finder won't allow it: https://qiao.github.io/PathFinding.js/visual/
Maybe for your scenario having physics would be overkill. Some JavaScript packages that play nice on browser + node are MatterJS, p2.js and of course Box2D.
Hope this helps! Feel free to create a "showcase" thread here to share your progress! Cheers!