mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-04-05 19:54:24 -04:00
preventDefaultKeys for PreciseInputManager, and just use the FlxG.keys version
This commit is contained in:
parent
aa7934fd32
commit
aaeb77a1f5
2 changed files with 1 additions and 2 deletions
source/funkin
|
@ -163,7 +163,7 @@ class PreciseInputManager extends FlxKeyManager<FlxKey, PreciseInputList>
|
|||
|
||||
static function getPreventDefaultKeys():Array<FlxKey>
|
||||
{
|
||||
return [];
|
||||
return FlxG.keys.preventDefaultKeys;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1773,7 +1773,6 @@ class PlayState extends MusicBeatSubState
|
|||
|
||||
function initPreciseInputs():Void
|
||||
{
|
||||
FlxG.keys.preventDefaultKeys = [];
|
||||
PreciseInputManager.instance.onInputPressed.add(onKeyPress);
|
||||
PreciseInputManager.instance.onInputReleased.add(onKeyRelease);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue