mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-02-26 08:33:56 -05: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:
commit
15bce04a50
2 changed files with 3 additions and 3 deletions
|
@ -103,7 +103,7 @@ class NoteScriptEvent extends ScriptEvent
|
|||
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;
|
||||
|
||||
|
|
|
@ -4251,8 +4251,8 @@ class ChartEditorState extends UIState // UIState derives from MusicBeatState
|
|||
}
|
||||
else
|
||||
{
|
||||
// Minimum of 0.
|
||||
return 0;
|
||||
// Minimum of -1.
|
||||
return -1;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue