[Solved] 2D Game engine for android [closed]


I only used one of them and below its specialities(supports android) as I remember. Others which I dont know about:

Jogre –>I dont know if this supports Android, but trying does not hurt

env3D –> Supports android.

jake2 –>I dont know if this supports Android

jpct —> Supports for android.

LWJGL —>a good base

You can access the Jmonkey Engine 3.0 to add it to your Eclipse projects or to just create scenes from ground up with its sdk.

You can do many things easily with its already-invented classes. You can apply many types of physics(event driven or time step), raytracing, building a 3D world with 3D object static or dynamically alterable. You can build custom shapes, even importing from manyfile types is made easy. You just need some time to create your game.

If you need custom mass-physics then you will need good opengl wisdom or opencl-cuda.

Jmonkey’s engine lets you choose full-screen or windowed frame; anti aliasing(?X) or not; every resolution available; custom fps limiter; overridable simpleUpdate() and overridable simpleRender() methods to change 3D realm before it gets drawn.

There are types of light and shadow classes. Point light, spot light, directional light and appropriate shadow-casters of these. Also jmonkey supports Android.

4

solved 2D Game engine for android [closed]