RichardMarks / coin-collector-mobile

MIT License
0 stars 1 forks source link

scoring and high scores #29

Closed RichardMarks closed 6 years ago

RichardMarks commented 6 years ago

let's setup local high score tracking with a cool name entry scene

we should show the best and last score on the title scene

or have a dedicated top ten scores scene that is accessed from the title scene

scoring is remaining lives 100 + coins collected 10 + time remaining in secs 10 number of board resets

remaining_lives = 0
coins_collected = 30
time_remaining_in_secs = 40
board_reset_count = 2
score = ((0 * 100) + (30 * 10) + (40 * 10)) * 2
echo score # 1400
RichardMarks commented 6 years ago