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

2014/10/3

Need help using World.showText

ILOVELABRADORS ILOVELABRADORS

2014/10/3

#
Hi. I really need help to understand how to use World.showText. Can anybody post an example? ~Thanks.
Super_Hippo Super_Hippo

2014/10/3

#
    public WorldSubclass()
    {
        super(600, 400, 1); 
        showText("Hello",300,200);
    }
ILOVELABRADORS ILOVELABRADORS

2014/10/5

#
Thanks, but do I have to create a new actor or do I just do it in a certain actor's action codes?
danpost danpost

2014/10/5

#
ILOVELABRADORS wrote...
Thanks, but do I have to create a new actor or do I just do it in a certain actor's action codes?
No. All you have to do is call the method on a World instance.
You need to login to post a reply.