Skip to content

Commit 9e9f439

Browse files
committed
e
1 parent 26645b4 commit 9e9f439

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

assets/shared/data/stageList.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ mall
66
mallEvil
77
school
88
schoolEvil
9-
tank
9+
tank
10+
desktop

source/states/SplashScreen.hx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ class SplashScreen extends MusicBeatState
2929

3030
override public function create()
3131
{
32+
// var currentDate = ExtendedDate.global();
33+
// if (currentDate.getDate() == 5) {
34+
// // Skip intro and show video
35+
// FlxG.switchState(new objects.VideoSprite("bat"));
36+
// return;
37+
// }
3238
states.FirstCheckState.gameInitialized = true;
3339
splashGrad = new FlxSprite().loadGraphic(Paths.image('effects/GradientSplash'));
3440
splashGrad.screenCenter();
@@ -46,7 +52,7 @@ class SplashScreen extends MusicBeatState
4652
initX = mix.x;
4753

4854
tape = new FlxText(0, 0, 400, "TAPE", 32);
49-
tape.font = Paths.font('FridayNightFunkin.ttf');
55+
tape.font = Paths.font('FridayNightFunkin.ttf');
5056
tape.screenCenter();
5157
tape.x -= 300;
5258
tape.y += 200;

source/yutautil/FlowState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class FlowState extends MusicBeatState {
2222
});
2323
}
2424

25-
public function update(elapsed:Float):Void {
25+
override public function update(elapsed:Float):Void {
2626
super.update(elapsed);
2727
if (currentSubState != null) {
2828
currentSubState.update(elapsed);

0 commit comments

Comments
 (0)