Hi,
I have a game which is called 'Infinity' the game allows the user to draw a character and then play with it. I have 2 worlds in one project, one being world, and the other being Sky. The first world that launches in the game is called 'world' I have managed to make the game open up another world, 'Sky' when the user hits the 'Play Game' button. I've managed to do this with the code best described below.
The only step I need now is to change the actors image which is called Bird, for your information 'Bird' doesn't already have a picture. I basically want to send a picture to Bird before I switch the world from 'world' to 'Sky'. So if you want a brief explanation of what I want, I want some code that will let me pass the image that the user had drawn in the 'world' class to the Bird actor in the 'Sky' class! Please help, I'm very confused and stumped.
Thanks,
Mint_Greenie
1 2 | Sky gw = new Sky(); Greenfoot.setWorld(gw); |