From 53ccf9e926dc756ebebd7d2a7f6b6288876979e2 Mon Sep 17 00:00:00 2001 From: Adam Cherek <111668308+adbreeker@users.noreply.github.com> Date: Wed, 3 Jan 2024 16:59:04 +0100 Subject: [PATCH] fixing loading screen --- Assets/Project/Scripts/UI/MainMenu/LoadingScreen.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Project/Scripts/UI/MainMenu/LoadingScreen.cs b/Assets/Project/Scripts/UI/MainMenu/LoadingScreen.cs index 72cb21714..fe7b3cdeb 100644 --- a/Assets/Project/Scripts/UI/MainMenu/LoadingScreen.cs +++ b/Assets/Project/Scripts/UI/MainMenu/LoadingScreen.cs @@ -31,7 +31,7 @@ IEnumerator CheckMediapipeWithDelay(float delay) //There we need to check if mediapipeProcess is loaded try { - MemoryMappedFile mmf_gesture = MemoryMappedFile.OpenExisting("gestures"); + MemoryMappedFile mmf_gesture = MemoryMappedFile.OpenExisting("magehand_gestures"); MemoryMappedViewStream stream_gesture = mmf_gesture.CreateViewStream(); BinaryReader reader_gesture = new BinaryReader(stream_gesture); byte[] frameGesture = reader_gesture.ReadBytes(12);