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

2021/2/11

Is there a way to disable the greenfoot icon that appears when an object without an image is added?

BogdanMicu1 BogdanMicu1

2021/2/11

#
Is there a way to disable the greenfoot icon that appears when an object without an image is added?
danpost danpost

2021/2/11

#
BogdanMicu1 wrote...
Is there a way to disable the greenfoot icon that appears when an object without an image is added?
public <<ActorClassName>>()
{
    setImage((GreenfootImage)null);
}
BogdanMicu1 BogdanMicu1

2021/2/11

#
Thanks!
You need to login to post a reply.