Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Jun 29, 2024
1 parent 90c6e7a commit 686206e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
4 changes: 0 additions & 4 deletions source/Main.hx
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,6 @@ class Main extends Sprite

addChild(game);

#if !mobile
applicationScreen.stage.scaleMode = openfl.display.StageScaleMode.NO_SCALE;
#end

#if debug
game.debugger.interaction.addTool(new funkin.util.TrackerToolButtonUtil());
#end
Expand Down
15 changes: 15 additions & 0 deletions source/funkin/play/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,21 @@ class PlayState extends MusicBeatSubState
*/
public var totalNotesPlayed:Int = 0;

/**
* The amount of notes per second.
*/
public var notesPerSecond:Int = 0;

/**
* Array of the amount of notes per second.
*/
public var npsArray:Array<Date> = [];

/**
* The maximum amount of notes per second.
*/
public var maxNps:Int = 0;

/**
* The values for the rating system.
*/
Expand Down

0 comments on commit 686206e

Please sign in to comment.