mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-01-06 20:27:40 +00:00
Remove unused "typing" element.
This commit is contained in:
parent
76b7baa44a
commit
a2aa1bd84a
|
@ -128,7 +128,6 @@ class FreeplayState extends MusicBeatSubState
|
|||
var albumRoll:AlbumRoll;
|
||||
|
||||
var letterSort:LetterSort;
|
||||
var typing:FlxInputText;
|
||||
var exitMovers:ExitMoverData = new Map();
|
||||
|
||||
var stickerSubState:StickerSubState;
|
||||
|
@ -536,12 +535,6 @@ class FreeplayState extends MusicBeatSubState
|
|||
funnyCam.bgColor = FlxColor.TRANSPARENT;
|
||||
FlxG.cameras.add(funnyCam, false);
|
||||
|
||||
typing = new FlxInputText(100, 100);
|
||||
|
||||
typing.callback = function(txt, action) {
|
||||
trace(action);
|
||||
};
|
||||
|
||||
forEach(function(bs) {
|
||||
bs.cameras = [funnyCam];
|
||||
});
|
||||
|
@ -916,7 +909,7 @@ class FreeplayState extends MusicBeatSubState
|
|||
generateSongList(currentFilter, true);
|
||||
}
|
||||
|
||||
if (controls.BACK && !typing.hasFocus)
|
||||
if (controls.BACK)
|
||||
{
|
||||
FlxTween.globalManager.clear();
|
||||
FlxTimer.globalManager.clear();
|
||||
|
|
Loading…
Reference in a new issue