Skip to content

Commit

Permalink
fix stupid fucking cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
user5522 committed Sep 4, 2024
1 parent 2253b83 commit b56920e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Assets/Scripts/SettingsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ void Awake()
else Instance = this;
}

private void Start() => LoadSettings();
private void Start()
{
LoadSettings();
UpdateCursorVisibility();
}

private void Update() => UpdateCursorVisibility();

Expand Down

0 comments on commit b56920e

Please sign in to comment.