Skip to content

Commit 9d9e89b

Browse files
for now no mobile sighhhh
1 parent 9be063e commit 9d9e89b

52 files changed

Lines changed: 71 additions & 1894 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/android.yml

Lines changed: 0 additions & 82 deletions
This file was deleted.

.github/workflows/ios.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"*.hx": "haxe",
66
"*.hscript": "haxe",
77
"*.hsc": "haxe",
8-
"*.hxs": "haxe",
9-
"iostream": "cpp"
10-
}
8+
"*.hxs": "haxe"
9+
}
1110
}

assets/data/scripts/week6-pause.hx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ import funkin.ui.FunkinText;
22
import flixel.text.FlxText;
33
import flixel.text.FlxTextBorderStyle;
44
import flixel.util.FlxAxes;
5-
#if mobile
6-
import funkin.mobile.FlxDPadMode;
7-
import funkin.mobile.FlxActionMode;
8-
#end
95

106
var pixelScript:Script;
117
var pauseCam = new FlxCamera();
@@ -66,10 +62,7 @@ function create(event) {
6662
cameras = [pauseCam];
6763

6864
FlxG.sound.play(Paths.sound(isThorns ? 'pixel/ANGRY' : 'pixel/clickText'));
69-
70-
#if mobile
71-
setVirtualPad(FlxDPadMode.UP_DOWN, FlxActionMode.A, true);
72-
#end
65+
}
7366

7467
function confText(text) {
7568
text.scale.set(6, 6);

assets/mobile/arrows.png

-5.21 KB
Binary file not shown.

assets/mobile/arrows.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

assets/mobile/virtual-input.png

-2.36 MB
Binary file not shown.

assets/mobile/virtual-input.txt

Lines changed: 0 additions & 11 deletions
This file was deleted.

commandline/commands/Update.hx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@ class Update {
1313
// to prevent messing with currently installed libs
1414
if (!FileSystem.exists('.haxelib'))
1515
FileSystem.createDirectory('.haxelib');
16-
17-
var filename = #if desktop "./libs.xml" #else "./libs-mobile.xml" #end;
18-
prettyPrint(filename);
16+
17+
var filename = "./libs.xml";
1918
var isSilent = false;
2019
for(arg in args) {
21-
if (arg.startsWith("--lib="))
20+
if (arg.startsWith("--lib=")) {
2221
filename = arg.substr("--lib=".length);
23-
if (arg == "--silent" || arg == "-s")
22+
}
23+
if (arg == "--silent" || arg == "-s") {
2424
isSilent = true;
25+
}
2526
}
2627

2728
if(!FileSystem.exists(filename)) {

libs-mobile.xml

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)