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

2017/10/7

Remove Object

MrKryptus MrKryptus

2017/10/7

#
Hi there. I want to remove an object when I press space. Someone an Idea?
Recorsi Recorsi

2017/10/7

#
if (Greenfoot.isKeyDown("space"))
       {
            getWorld().removeObject(this);
       } 
MrKryptus MrKryptus

2017/10/7

#
Recorsi wrote...
if (Greenfoot.isKeyDown("space"))
       {
            getWorld().removeObject(this);
       } 
thanks
You need to login to post a reply.