Hi,
I have to make a midlet game that works on horizontal and vertical view.
Landscape/portrait mode.
Is there a way to make possible to change from one mode to another mode?(a class,an api...)
Or I have to make by myself?
Thanks to all
Hi,
I have to make a midlet game that works on horizontal and vertical view.
Landscape/portrait mode.
Is there a way to make possible to change from one mode to another mode?(a class,an api...)
Or I have to make by myself?
Thanks to all
There is no 'easy' way. You have to implement the rotation.
The most lazy way is using a buffer image, then paint it with Graphics.drawRegion method, that is of course results a huge memory wastage.
You may use World.setTransform method in case of 3D game.
thanks for your answer.
I will implement some rotation methoed.