In some games, there is the a score after you finished the game, and that score just keep increasing up until the score is shown. ive figure out how to do that!
here it is:
1.Create a variable named score_Count.
2.Create an actor named score.
3.on draw actor of actor score
script
- Code: Select all
score_Count=textNumber;
4.Create an actor named Finish_Score.
5.on draw actor of actor Finish_Score script:
- Code: Select all
textNumber=textNumber+1;
if(textNumber>score_Count)
{
textNumber=scoreCount;
}
That should do it. if there is some error, im sorry, i cant help you.