In my World i have these Greenfoot icons.
These are actors with no image, there will appear a text.
is there a way to hide these greenfoot icons before?


1 2 3 4 | public Text() { setImage( new GreenfootImage( 1 , 1 )); } |
1 2 3 4 | public Text() { setImage((GreenfootImage) null ); } |