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

2022/2/1

Can some one plz give me code to make a score counter according to how much seconds the actor is alive

apcode apcode

2022/2/1

#
plz give me fast i have a project
danpost danpost

2022/2/1

#
apcode wrote...
make a score counter according to how much seconds the actor is alive
In class of actor:
// outside act
private int frames;

// in act
getWorld().showText("Age: "+(++frames/60), 80, 40);
You need to login to post a reply.