From 884103d805270bd776b7a485d9431401c0c05594 Mon Sep 17 00:00:00 2001
From: miepzerino <o.skotnik@gmail.com>
Date: Sun, 30 Mar 2025 18:50:13 +0000
Subject: [PATCH] #16 added ores to player inventory #14 show inventory in UI

---
 Assets/Scripts/AnimationStrings.cs |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/Assets/Scripts/AnimationStrings.cs b/Assets/Scripts/AnimationStrings.cs
index 0ed6a81..1ff84f6 100644
--- a/Assets/Scripts/AnimationStrings.cs
+++ b/Assets/Scripts/AnimationStrings.cs
@@ -5,9 +5,17 @@
 {
     internal class Player
     {
-        internal static string IsMoving = "IsMoving";
-        internal static string IsFlying = "IsFlying";
+        internal static string isMoving = "IsMoving";
+        internal static string isFlying = "IsFlying";
+        public static string isDrillingLeftRight = "IsDrillingLeftRight";
+        public static string isDrillingDown = "IsDrillingDown";
+        public static string timeToDrill = "TimeToDrill";
 
-        internal static string IsGrounded = "IsGrounded";
+        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.9.3