1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-05-21 22:53:13 +00:00

Merge pull request #783 from FunkinCrew/nothyper474/chart-selection

[PUBLIC PR] Chart Editor: Fi bug where selecting area left of the chart would select the player's left notes
This commit is contained in:
Cameron Taylor 2024-09-22 13:30:32 -04:00 committed by GitHub
commit 15bce04a50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -103,7 +103,7 @@ class NoteScriptEvent extends ScriptEvent
public var comboCount(default, null):Int; public var comboCount(default, null):Int;
/** /**
* Whether to play the record scratch sound (if this eventn type is `NOTE_MISS`). * Whether to play the record scratch sound (if this event type is `NOTE_MISS`).
*/ */
public var playSound(default, default):Bool; public var playSound(default, default):Bool;

View file

@ -4251,8 +4251,8 @@ class ChartEditorState extends UIState // UIState derives from MusicBeatState
} }
else else
{ {
// Minimum of 0. // Minimum of -1.
return 0; return -1;
} }
}); });