screen-flow #17
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "screen-flow"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Adding (nearly) the whole game flow: title screen, settings, controls, credits.
A few edits to:
Added InputHelper plugin for easily remappable controls.
Added (my) gamepad icons
I assume Andy is working on a title screen, which can easily replace this (as well as any other elements, like the main_theme.tres) but wanted to get this foundational flow in.
The game end screens still need adjusting.
87cdfdf290to44d5a3ad5eLooking on on my end after the latest re-base!
@ -1,6 +1,14 @@# GameState autoloadextends Nodeconst PAUSE = preload('res://screens/pause/pause.tscn')question: what's the reason to pre-load the pause scene but not the others?
Pause is the only one where instant access is needed. Not that it matters for the scope of this but it doesn't hurt.
44d5a3ad5etob98b1ee9d1