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

2019/6/20

eat

PIZZAMAN PIZZAMAN

2019/6/20

#
what is the coat to let something eat on command? like if I would press spacebar what would be the code to let something eat
coder123 coder123

2019/6/20

#
What do you mean?
danpost danpost

2019/6/20

#
PIZZAMAN wrote...
what is the coat to let something eat on command? like if I would press spacebar what would be the code to let something eat
if (Greenfoot.isKeyDown("space")) removeTouching(Food.class);
You need to login to post a reply.