3D Framework for Android sample

I finally made it!

I have found couple bugs that was causing problems in my game.

first of all and I guess that was only error I have had was texturing for blocks – my program was using custom created mipmap function that was using probably not supported by hardware on desire, however.. it is working now!

Check this out! 3D Framework

Finishing prototype

Tomorrow I have to pass documentation for my mobile development game. Development name “Carlos”.

Basic idea for the game is to move from place A to place B – but that is not so easy to do! There is labyrinth a.. and a evil sphere.. fine! I had no idea for the game, ok!

Well not simple enough to be build in less than a week, anyway. This was great background for developing simple Android Framework that will allow me to develop something more sophisticated in the future.

Last changes for lightning, music  and labyrinth model  and tomorrow documentation..

fingers crossed,

Ok, adding music is really easy!

what we need is variable

private MediaPlayer mp;

then in onCreate method

  mp = MediaPlayer.create(this, R.raw.run);
  mp.start();

and done!

you can as well add

mp.stop();
mp.pause();