I've spend quite some time working on multiple games, all pretty much up to scratch on the development side of things, but i just want to add some prosthetic things, and one thing that i'm determined to add, i actually don't know the specific name for it, but it has the same job of a splash screen but it loads inside the gui, example... (This has been created using photoshop.)
When you open the game for 5-10 seconds you will see this:
Then after 5-10 the game will show...
EDIT: Can i simply do this, by drawing an image, then removing?
Example:
My Game updates every 5 milliseconds
so:
Timer startUpTimer; boolean startupready = false; if(startupready == false && startUpTimer < 5000) { callImage startUpTimer = new Timer(5000, this); startUpTimer.start(); } else if(startUpTimer >= 5000) { startupready = true; startUpTimer.stop(); callnormalstartup. }
or something along those lines, even though thats really badly writen...