aligned pixel arrows
This commit is contained in:
parent
b6091a43a7
commit
b70ecbbe76
3
assets/data/roses/rosesDialogue.txt
Normal file
3
assets/data/roses/rosesDialogue.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
:dad:Not bad for an ugly worm.
|
||||||
|
:dad:But this time I'll rip your nuts off right after your girlfriend finishes gargling mine.
|
||||||
|
:bf:Bop beep be be skdoo bep
|
3
assets/data/senpai/senpaiDialogue.txt
Normal file
3
assets/data/senpai/senpaiDialogue.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
:dad:Ah, a new fair maiden has come in search of true love!
|
||||||
|
:dad:A serenade between gentlemen shall decide where her beautiful heart shall reside.
|
||||||
|
:bf:Beep bo bop
|
BIN
assets/images/weeb/pixelUI/hand_textbox.png
Normal file
BIN
assets/images/weeb/pixelUI/hand_textbox.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 260 B |
@ -30,6 +30,8 @@ class DialogueBox extends FlxSpriteGroup
|
|||||||
var portraitLeft:FlxSprite;
|
var portraitLeft:FlxSprite;
|
||||||
var portraitRight:FlxSprite;
|
var portraitRight:FlxSprite;
|
||||||
|
|
||||||
|
var handSelect:FlxSprite;
|
||||||
|
|
||||||
public function new(talkingRight:Bool = true, ?dialogueList:Array<String>)
|
public function new(talkingRight:Bool = true, ?dialogueList:Array<String>)
|
||||||
{
|
{
|
||||||
super();
|
super();
|
||||||
@ -73,6 +75,9 @@ class DialogueBox extends FlxSpriteGroup
|
|||||||
box.updateHitbox();
|
box.updateHitbox();
|
||||||
add(box);
|
add(box);
|
||||||
|
|
||||||
|
handSelect = new FlxSprite(FlxG.width * 0.9, FlxG.height * 0.9).loadGraphic('assets/images/weeb/pixelUI/hand_textbox.png');
|
||||||
|
add(handSelect);
|
||||||
|
|
||||||
box.screenCenter(X);
|
box.screenCenter(X);
|
||||||
portraitLeft.screenCenter(X);
|
portraitLeft.screenCenter(X);
|
||||||
|
|
||||||
|
@ -139,6 +139,9 @@ class Note extends FlxSprite
|
|||||||
|
|
||||||
x -= width / 2;
|
x -= width / 2;
|
||||||
|
|
||||||
|
if (PlayState.curStage == 'school')
|
||||||
|
x += 30;
|
||||||
|
|
||||||
if (prevNote.isSustainNote)
|
if (prevNote.isSustainNote)
|
||||||
{
|
{
|
||||||
switch (prevNote.noteData)
|
switch (prevNote.noteData)
|
||||||
|
@ -149,11 +149,9 @@ class PlayState extends MusicBeatState
|
|||||||
"Only then I will even CONSIDER letting you\ndate my daughter!"
|
"Only then I will even CONSIDER letting you\ndate my daughter!"
|
||||||
];
|
];
|
||||||
case 'senpai':
|
case 'senpai':
|
||||||
dialogue = [
|
dialogue = CoolUtil.coolTextFile('assets/data/senpai/senpaiDialogue.txt');
|
||||||
':dad:Ah, a new fair maiden has come in search of true love!',
|
case 'roses':
|
||||||
":dad:A serenade between gentlemen shall decide where her beautiful heart shall reside.",
|
dialogue = CoolUtil.coolTextFile('assets/data/roses/rosesDialogue.txt');
|
||||||
":bf:Beep bo bop"
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (SONG.song.toLowerCase() == 'spookeez' || SONG.song.toLowerCase() == 'monster' || SONG.song.toLowerCase() == 'south')
|
if (SONG.song.toLowerCase() == 'spookeez' || SONG.song.toLowerCase() == 'monster' || SONG.song.toLowerCase() == 'south')
|
||||||
@ -638,6 +636,8 @@ class PlayState extends MusicBeatState
|
|||||||
{
|
{
|
||||||
case 'senpai':
|
case 'senpai':
|
||||||
schoolIntro(doof);
|
schoolIntro(doof);
|
||||||
|
case 'roses':
|
||||||
|
schoolIntro(doof);
|
||||||
default:
|
default:
|
||||||
startCountdown();
|
startCountdown();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user