1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-11 20:57:20 +00:00

Fix some weird issues with constants

This commit is contained in:
EliteMasterEric 2023-08-01 15:29:17 -04:00
parent 9b66bc186a
commit 639a36a9c7

View file

@ -160,17 +160,17 @@ class Constants
/**
* The maximum interval within which a note can be hit, in milliseconds.
*/
public static final HIT_WINDOW_MS:Float = 160;
public static final HIT_WINDOW_MS:Float = 160.0;
/**
* Constant for the number of seconds in a minute.
*/
public static final SECS_PER_MIN:Float = 60;
public static final SECS_PER_MIN:Int = 60;
/**
* Constant for the number of milliseconds in a second.
*/
public static final MS_PER_SEC:Float = 1000;
public static final MS_PER_SEC:Int = 1000;
/**
* The number of microseconds in a millisecond.