DEV Community

Discussion on: Go Packages we developed for our games

Collapse
 
carrollgt91 profile image
Grayson Carroll

Great work! I have just started working on a game project and go, and am definitely planning on using some of these libraries! I'll definitely contribute back when I can.

Out of curiosity, did you use another library for collision detection or write something simple yourself?

Collapse
 
peppage profile image
Pepp

I used ebiten to make a very basic game and used pixel perfect collision you can check it out here github.com/ranchblt/geometry-jumpe...

Collapse
 
hajimehoshi profile image
Hajime Hoshi

Great work! I have just started working on a game project and go, and am definitely planning on using some of these libraries! I'll definitely contribute back when I can.

Thank you! I appreciate your feedback!

Out of curiosity, did you use another library for collision detection or write something simple yourself?

No, since our games don't need such physics engines or collision detections. There are some such engines like Box2D in Go (github.com/ByteArena/box2d) and you can use this with our engine.