Skip to content

Commit

Permalink
Add the ability to flip the character in the Animation Editor
Browse files Browse the repository at this point in the history
  • Loading branch information
AbnormalPoof authored and charlesisfeline committed Jul 15, 2024
1 parent b013ea4 commit 3757e23
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions source/funkin/ui/debug/anim/DebugBoundingState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,11 @@ class DebugBoundingState extends FlxState
onionSkinChar.visible = !onionSkinChar.visible;
}

if (FlxG.keys.justPressed.G)
{
swagChar.flipX = !swagChar.flipX;
}

// Plays the idle animation
if (FlxG.keys.justPressed.SPACE)
{
Expand Down

0 comments on commit 3757e23

Please sign in to comment.