A very simple 1 line change that just fixes the character variation key which characters use as a default to use a proper "default" key rather than just Mario's. May require some JSON changes, but I'll check around and make sure to fix what I can find.
* Added Special Scrolling to the visuals menu
* Added the actual functionality for special scrolling to work with menu
* Fixed PC-8801 mode if smooth transitions are enabled
* Special scrolling, not-so special translations
* Some state machine functions to make code tidier in the future
* Added a function to Global to check if we're playtesting, for convenience
* Only allow noclip w/o debug in leveltesting, toggling added, kept jump key to exit
* Quick fix for flipped Jump/RunJump anims
accidentally used the condition the wrong way, my bad LOL
* >= moment
so thats why it was playing the fall animation for a single frame
* Reverted attempted fixes accidentally left in for CrouchBump
* Additional optional animations for water/wing power-up + extras
* Added animation fallbacks for new animations
* Kicking animation function
* Kick anim functionality for shells
* Player performs kick animation
* RunJump anims + quick fixes
new anims, including RunJump, RunJumpFall and RunJumpBump (incredible name) which play depending on the X velocity the player left the ground with.
also fixed the bob-omb to play the kick animation as well as it should
also
* Updated "FlyMove" to "WingMove" for consistency
* Update "FlyMove" to "WingMove" in animation fallbacks
* FPS counter is off by default, enable with F4
* A message or error is now shown on-screen if a screenshot is taken with F2
* Show message when noclip is enabled or disabled
Changes a few animation fallbacks to something more reasonable, and fixes potential broken animation fallbacks (notably PipeMove, which didn't work if you didn't define a Move animation.)
* Global.gd now has an extra variable for current room type
* ResourceSetterNew.gd now has variation category for room types
The state variable also had to include the room type, since it wouldn't update properly when entering a bonus room from a level that's already underground
* LevelClass.gd sets room type on update_theme
A new function, get_room_type() allows for the level's room type to be detected, which can easily be overwritten by other level classes. Bonus Rooms are detected by comparing the level's scene path to a pre-defined list of bonus rooms.
* Added get_room_type() to CoinHeaven.gd
* Added get_room_type() to PipeCutscene.gd
Also updates the room type in _enter_tree() since update_theme() isn't called here.
* Added get_room_type() to TitleScreen.gd