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.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

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

link|improve this answer
I'll check this one out and come back with the results... – Thirlan May 1 '11 at 18:02
1  
I decided to go with Three.js. Copperlicht requires you to use CopperCube and thus it is too proprietary and inflexible. GLGE was another I looked at but Three.js was was more popular so probably a better bet. I also found this blog which helped me get started, catchvar.com/threejs-game-overview-and-isometric-grid – Thirlan Feb 5 at 22:17
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)

link|improve this answer
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.

link|improve this answer
Right, I'm aware of that but was hoping to find libraries that were optimized for this by specializing in 2D. In the end however I decided it was better for my future plans to start with a 3D engine in the first place. – Thirlan Apr 9 at 13:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.