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

2012/11/27

score

ndi_andi ndi_andi

2012/11/27

#
how to display the 5 high score in Greenfoot?
danpost danpost

2012/11/27

#
You can select 'Edit' on the menu bar, then choose 'Import Class...' and select the 'ScoreBoard' class which was written just for that purpose (it shows the top 5 scores plus the 5 nearest scores to the current user).
ndi_andi ndi_andi

2012/12/6

#
can you give me example?
danpost danpost

2012/12/6

#
When you want to create a scoreboard to display the top 5 scores (and the top nearest scores) insert the code
// from the world class
addObject(new ScoreBoard(getWidth(), getHeight()), getWidth()/2, getHeight()/2);
You must first import the ScoreBoard class as described above.
You need to login to post a reply.