mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-04-03 18:59:42 -04:00
more controls for charting
This commit is contained in:
parent
6e9c3f6540
commit
f543c23ba9
1 changed files with 18 additions and 1 deletions
|
@ -214,7 +214,24 @@ class ChartingState extends MusicBeatState
|
|||
|
||||
if (FlxG.keys.justPressed.R)
|
||||
{
|
||||
changeSection();
|
||||
if (FlxG.keys.pressed.SHIFT)
|
||||
changeSection();
|
||||
else
|
||||
changeSection(curSection);
|
||||
}
|
||||
|
||||
if (FlxG.keys.pressed.W || FlxG.keys.pressed.S)
|
||||
{
|
||||
FlxG.sound.music.pause();
|
||||
|
||||
var daTime:Float = 700 * FlxG.elapsed;
|
||||
|
||||
if (FlxG.keys.pressed.W)
|
||||
{
|
||||
FlxG.sound.music.time -= daTime;
|
||||
}
|
||||
else
|
||||
FlxG.sound.music.time += daTime;
|
||||
}
|
||||
|
||||
if (FlxG.keys.justPressed.UP)
|
||||
|
|
Loading…
Add table
Reference in a new issue