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

2012/4/14

2.2 couter

-nic- -nic-

2012/4/14

#
ok ive been trying to un animate the score counter (or speed up animation) but i cant figure it out?? please help!
danpost danpost

2012/4/14

#
If the score counter class has 'setValue' and 'getValue' methods, use them instead of 'add', 'subtract', 'bump', or 'adjust' (whatever is there).
nccb nccb

2012/4/14

#
See: http://www.greenfoot.org/topics/1192
-nic- -nic-

2012/4/15

#
not there but tanks
SPower SPower

2012/4/15

#
Use this to update the score:
yourcounter.setValue(yourcounter.getValue() + theextrapoints);
You need to login to post a reply.