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.
|
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 |
|||||||
|
|
you could also try https://github.com/GoodBoyDigital/pixi.js It makes webGL super easy to use and is pretty speedy too. |
|||
|
|
|
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) |
|||
|
|
|
the best 2D engine for WebGL is... WebGL! seriously though. the only potentially 3D-related part of WebGL is the z-buffer stuff, and even then that's just down to the naming of the 'depthRange()' parameters. apart from that, WebGL is entirely 2D. |
|||||||||
|
|
CAAT http://labs.hyperandroid.com/static/caat/ is able to render using Canvas, WebGL and CSS with the same code base. Demo: http://labs.hyperandroid.com/static/CAAT-Samples/demos/demo1/path.html |
|||
|
|
|
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. |
|||
|
|
I have published my own library, called IvanK lib. It has all the basic tools for 2D graphics. Still haven't found anything simplier or faster :) |
|||
|
|