From a0231b6896566ce8595d1e2cd5d26b6792867ece Mon Sep 17 00:00:00 2001
From: miepzerino <o.skotnik@gmail.com>
Date: Tue, 19 Dec 2023 00:02:24 +0000
Subject: [PATCH] Added pause panel
---
Assets/Scripts/AnimationStrings.cs | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/Assets/Scripts/AnimationStrings.cs b/Assets/Scripts/AnimationStrings.cs
index ac9b492..07c2fe6 100644
--- a/Assets/Scripts/AnimationStrings.cs
+++ b/Assets/Scripts/AnimationStrings.cs
@@ -5,7 +5,14 @@
{
internal class Player
{
- internal static string IsMoving = "IsMoving";
- internal static string IsFlying = "IsFlying";
+ internal static string isMoving = "IsMoving";
+ internal static string isFlying = "IsFlying";
+
+ internal static string isGrounded = "IsGrounded";
+
+ public static string isAtWall = "IsAtWall";
+ public static string isAtCeiling = "IsAtCeiling";
}
+ public static string isAlive = "IsAlive";
+ public static string canMove = "CanMove";
}
\ No newline at end of file
--
Gitblit v1.10.0