Anyone know any good Webgl 2D engines? I've been thinking about using a Webgl 3D engine like Copperlicht but this feels like using a bazooka to swat a fly. I'm mostly interested in using it to develop an RPG game.
|
feedback
|
|
Three.js is reasonably low level while still providing a scene graph. There's a code example in the README: https://github.com/mrdoob/three.js#readme | |||||||
feedback
|
|
I recently pushed this to github: https://github.com/funkaster/ChesterGL - check the online tests for a demo. It also has canvas fallback when there's no webgl support (note: it's still a work in progress) | |||
|
feedback
|
|
You can use a 3D engine as a 2D engine, by passing it coordinates with z=0, and only 2D transforms. So three.js and processing.js are options. | |||
feedback
|