Skip to content

Commit b64cca8

Browse files
committed
Merge branch 'AP-CustomEx' of https://github.com/Z11Coding/Mixtape-Engine-Rework into AP-CustomEx
2 parents ebf1cc9 + aa0a456 commit b64cca8

File tree

10 files changed

+16
-8
lines changed

10 files changed

+16
-8
lines changed
75.5 KB
Loading
5.4 KB
Loading
5.01 KB
Loading
2.32 KB
Loading

source/objects/Note.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -709,6 +709,7 @@ class Note extends NoteObject
709709
// If this is an AP check note, override the texture
710710
if(isCheck && value != 'noteSkins/ap_assets/AP_NOTE') {
711711
value = 'noteSkins/ap_assets/AP_NOTE';
712+
this.shader = null; // no shader please :D
712713
}
713714

714715
if(texture != value) reloadNote(value);

source/shop/DaShop.hx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,19 @@ class DaShop extends MusicBeatState
7171
descBG.scrollFactor.set(1,1);
7272
add(descBG);
7373

74+
var alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'];
7475
desc = new undertale.UnderTextParser(250, descBG.y + 30, Std.int(FlxG.width * 0.6), '', 20);
7576
desc.font = Paths.font("fnf1.ttf");
76-
desc.sounds = [FlxG.sound.load(Paths.sound('ut/monsterfont'), 0.6)];
77+
for (letter in alphabet) {
78+
desc.soundOnChars.set(letter, FlxG.sound.load(Paths.sound('ut/uifont'), 1));
79+
desc.soundOnChars.set(letter.toUpperCase(), FlxG.sound.load(Paths.sound('ut/uifont'), 1));
80+
}
7781
desc.alignment = CENTER;
7882
desc.scrollFactor.set(1,1);
7983
add(desc);
8084

85+
86+
8187
super.create();
8288
}
8389

source/shop/ShopData.hx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ class ShopData {
103103
items.set('h?', ['h?', 100, 'unknownMod', false, false]);
104104
}*/
105105
//Test Item
106-
items.set('Fanta Can', ['(Insert dylan line here)', 100, 'emptyAchievement', false, false]);
107-
items.set('h?', ['h?', 100, 'unknownMod', false, false]);
108-
items.set('Test A', ['Space Test 1', 100, 'unknownMod', false, false]);
109-
items.set('Test B', ['Space Test 2', 100, 'unknownMod', false, false]);
110-
items.set('Test C', ['Space Test 3', 100, 'unknownMod', false, false]);
106+
items.set('Fanta Can', ['(Insert dylan line here)', 100, 'defaultItem', false, false]);
107+
items.set('h?', ['h?', 100, 'defaultTrap', false, false]);
108+
items.set('Test A', ['Space Test 1', 100, 'defaultTrap', false, false]);
109+
items.set('Test B', ['Space Test 2', 100, 'defaultItem', false, false]);
110+
items.set('Test C', ['Space Test 3', 100, 'unknownItem', false, false]);
111111
}
112112

113113
public static function saveShop() {

source/states/DebugStateMenu.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import flixel.util.FlxColor;
1111
import flixel.util.FlxTimer;
1212
import games.match3.Match3TestState;
1313
import objects.Alphabet;
14+
import shop.DaShop;
1415
import states.MainMenuState;
1516
// import states.MicrophoneTestState;
1617
import yutautil.StatePick;

source/states/SplashScreen.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class SplashScreen extends MusicBeatState
4545
if (currentDate.getDate() == 5) {
4646
// Skip intro and show video
4747
trace("Playing Video!");
48-
startVideo("splashscreen/bat");
48+
startVideo("splashscreen/bat.mp4");
4949
}
5050
states.FirstCheckState.gameInitialized = true;
5151
if (!isVideo) {

source/substates/GameOverSubstate.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class GameOverSubstate extends MusicBeatSubstate
185185
causeofdeath = new UnderTextParser(0, 0, Std.int(deathbysquare.width), "", 32);
186186
causeofdeath.scrollFactor.set();
187187
causeofdeath.font = Paths.font("fnf1.ttf");
188-
causeofdeath.color = 0xFFFFFFFF;
188+
causeofdeath.color = 0xFFFFFFFF;
189189
causeofdeath.visible = false; // Start invisible
190190
for (letter in alphabet) {
191191
causeofdeath.soundOnChars.set(letter, FlxG.sound.load(Paths.sound('ut/uifont'), 1));

0 commit comments

Comments
 (0)