From 176d95ec6a8640adb89f26263edc965bb717b479 Mon Sep 17 00:00:00 2001 From: Savya Bikram Shah Date: Sun, 7 Jun 2026 16:58:17 +0545 Subject: [PATCH] Heat fix by fps cap --- Assets/Darkmatter/Code/Features/AppBoot/Flow/AppBootFlow.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Assets/Darkmatter/Code/Features/AppBoot/Flow/AppBootFlow.cs b/Assets/Darkmatter/Code/Features/AppBoot/Flow/AppBootFlow.cs index e8c2c98..90365bc 100644 --- a/Assets/Darkmatter/Code/Features/AppBoot/Flow/AppBootFlow.cs +++ b/Assets/Darkmatter/Code/Features/AppBoot/Flow/AppBootFlow.cs @@ -30,6 +30,9 @@ namespace Darkmatter.Features.AppBoot.Flow public async UniTask StartAsync(CancellationToken cancellation = default) { +#if UNITY_ANDROID || UNITY_IOS + Application.targetFrameRate = 60; +#endif Screen.sleepTimeout = SleepTimeout.NeverSleep; await _progression.LoadAsync();