Fix issue with level switching and update the settings to remove reduntant ones

This commit is contained in:
Michal Pikulski
2025-10-14 09:05:51 +02:00
parent 05f63b28a0
commit 20b3ce7136
2 changed files with 1 additions and 2 deletions

View File

@@ -123,8 +123,6 @@ namespace AppleHills.Core.Settings
float ViewfinderShrinkDuration { get; }
float ViewfinderMoveSpeed { get; }
AnimationCurve ViewfinderShrinkCurve { get; }
float ViewfinderStartScale { get; }
float ViewfinderEndScale { get; }
float[] ViewfinderProgressThresholds { get; }
float PaddingFactor { get; }
float MaxSizePercent { get; }

View File

@@ -123,6 +123,7 @@ namespace LevelS
private void OnMenuCancel()
{
_isActive = true; // Allow interaction again if cancelled
InputManager.Instance.SetInputMode(InputMode.GameAndUI);
}
}
}