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

2025/2/18

How do i show the actors

Mahdir2111 Mahdir2111

2025/2/18

#
How do i show the actors
danpost danpost

2025/2/19

#
Mahdir2111 wrote...
How do i show the actors
I presume you are referring to your one and only uploaded scenario. It is probably using either java.awt or javax.swing libraries. Avoid using them, if so.
Mahdir2111 Mahdir2111

2025/2/20

#
I mean to show the actors on the world
danpost danpost

2025/2/21

#
Mahdir2111 wrote...
I mean to show the actors on the world
Use the World instance method called addObject:
// in MyWorld constructor, after the 'super' call
this.addObject(new Crab(), 100, 100);
To understand better, its documentation is here.
You need to login to post a reply.