A core class which handles tracking score and combo for the current song.

Static variables

@:value(new Tallies())statictallies:Tallies = new Tallies()

Keeps track of notes hit for the current song and how accurate you were with each note (bad, missed, shit, etc.)

@:value(new Tallies())statictalliesLevel:Tallies = new Tallies()

Keeps track of notes hit for the current WEEK / level for use with storymode, or likely any other "playlist" esque option

Static methods

staticcombineTallies(newTally:Tallies, baseTally:Tallies):Tallies

Produces a new Tallies object which represents the sum of two existing Tallies

Parameters:

newTally

The first tally

baseTally

The second tally

Returns:

The combined tally