This site requires JavaScript, please enable it in your browser!
Greenfoot back
Enrique
Enrique wrote ...

2017/9/14

maze game

Enrique Enrique

2017/9/14

#
Hi everyone I was wondering how I would be able to maze game. The maze game I want to create is a simple maze game for ages 10 - 12, in the game if they touch the walls of the maze they have to restart, do you guys have any idea how I would be able to do this.
Enrique Enrique

2017/9/14

#
I forgot to mention this is my first time using greenfoot
danpost danpost

2017/9/14

#
In the act method of the class of the moving actor:
if (isTouching(Wall.class)) Greenfoot.setWorld(new MyWorld());
You need to login to post a reply.