#
Source Folder
Our Source folder is organized according to what function each .hx file has:
backend/
(previouslydata
) holds important code relating to the engine's core functions and tools, such as Highscore, Timings, Discord and the CrashHandler. You will probably only use this to add Songs or change the Discord Status config.flixel/
has modified HaxeFlixel code that is optimized for Doido Engine. You probably won't need to use this.objects/
(previouslygameObjects
) is where all the objects are stored, such as Characters, Stages, Notes and all the UI. This is something you will use a lot. It has a couple of subfolders specific to the HUD or menus.states/
andsubstates/
hold the code for the game's states, such as the PlayState or MainMenuState forstates/
, and the GameOverSubState or PauseSubState forsubstates/
.