Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DemoUtilities/Input.cs
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,11 @@ public void Start()
//This is pretty doofy, but it works reasonably well and we don't have easy access to the windows-provided capture stuff through opentk (that I'm aware of?).
//Could change it later if it matters, but realistically it won't matter.
MousePosition = WindowCenter;
window.CursorVisible = false;
if (window.CursorVisible) window.CursorVisible = false;
}
else
{
window.CursorVisible = true;
if (!window.CursorVisible) window.CursorVisible = true;
}

}
Expand Down
Loading