generated from ShadowMario/FNF-PsychEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
> Added scroll wheel and middle click support to most menus.
- Loading branch information
Showing
37 changed files
with
401 additions
and
379 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import funkin.backend.utils.Paths; | ||
|
||
class Constants { | ||
public static inline final SOUND_EXT:String = #if web "mp3" #else "ogg" #end; | ||
public static inline final VIDEO_EXT:String = "mp4"; | ||
|
||
public static inline final DEFAULT_CHARACTER:String = 'bf'; // if the character is missing. | ||
|
||
public static var DEFAULT_FONT(get, null):String = null; | ||
@:noCompletion private inline static function get_DEFAULT_FONT():String { | ||
if (DEFAULT_FONT == null) | ||
DEFAULT_FONT = Paths.font("vcr.ttf"); | ||
return DEFAULT_FONT; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.