From 6f68068d168c4b1e1a036cacc3d805f82a9ef762 Mon Sep 17 00:00:00 2001 From: Ivan Kuzmenko <6745157+rndtrash@users.noreply.github.com> Date: Mon, 21 Aug 2023 18:41:36 +0300 Subject: [PATCH] Add FlipH to the death screen --- scripts/DeathScreen.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/DeathScreen.cs b/scripts/DeathScreen.cs index e8854f8..9f2071c 100644 --- a/scripts/DeathScreen.cs +++ b/scripts/DeathScreen.cs @@ -41,6 +41,7 @@ public partial class DeathScreen : TextureRect _playerSprite.Texture = animatedSprite2D.SpriteFrames.GetFrameTexture(animatedSprite2D.Animation, animatedSprite2D.Frame); _playerSprite.Position -= _playerSprite.Texture.GetSize() / 2; + _playerSprite.FlipH = animatedSprite2D.FlipH; } if (killer.FindChild("AnimatedSprite2D") is AnimatedSprite2D killerAnimatedSprite2D) @@ -49,6 +50,7 @@ public partial class DeathScreen : TextureRect _monsterSprite.Texture = killerAnimatedSprite2D.SpriteFrames.GetFrameTexture(killerAnimatedSprite2D.Animation, killerAnimatedSprite2D.Frame); _monsterSprite.Position -= _monsterSprite.Texture.GetSize() / 2; + _monsterSprite.FlipH = killerAnimatedSprite2D.FlipH; } Visible = true;