Skip to content

Commit

Permalink
fix the cursor on playstate
Browse files Browse the repository at this point in the history
closes issue #876
  • Loading branch information
TheStinkern authored Feb 4, 2025
1 parent 1fb3e14 commit ac7d001
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ class PlayState extends MusicBeatState

override public function create()
{
FlxG.mouse.visible = false;
//Stops playing on a height that isn't divisible by 2
if (ClientPrefs.ffmpegMode && ClientPrefs.resolution != null) {
var resolutionValue = cast(ClientPrefs.resolution, String);
Expand Down

3 comments on commit ac7d001

@TheStinkern
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

honestly might make it where you can toggle it

@moxie-coder
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

honestly might make it where you can toggle it

no need since it can already be done in Lua or HScript

@TheStinkern
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah

let me put that line of code in a different state

Please sign in to comment.