mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-12-31 17:27:28 +00:00
nene before u get a whoopin
This commit is contained in:
parent
60e0076642
commit
d2f638302e
|
@ -509,6 +509,17 @@ class Character extends FlxSprite
|
|||
playAnim(animShit, true, false, animation.getByName(animShit).frames.length - 8);
|
||||
}
|
||||
}
|
||||
case 'nene':
|
||||
// GIRLFRIEND CODE
|
||||
tex = Paths.getSparrowAtlas('characters/Nene_assets');
|
||||
frames = tex;
|
||||
|
||||
animation.addByIndices('danceLeft', 'nenebeforeyougetawoopin', [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], "", 24, false);
|
||||
animation.addByIndices('danceRight', 'nenebeforeyougetawoopin', [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "", 24, false);
|
||||
|
||||
loadOffsetFile(curCharacter);
|
||||
|
||||
playAnim('danceRight');
|
||||
}
|
||||
|
||||
dance();
|
||||
|
@ -650,7 +661,7 @@ class Character extends FlxSprite
|
|||
{
|
||||
switch (curCharacter)
|
||||
{
|
||||
case 'gf' | 'gf-christmas' | 'gf-car' | 'gf-pixel' | 'gf-tankmen':
|
||||
case 'gf' | 'gf-christmas' | 'gf-car' | 'gf-pixel' | 'gf-tankmen' | "nene":
|
||||
if (!animation.curAnim.name.startsWith('hair'))
|
||||
{
|
||||
danced = !danced;
|
||||
|
|
|
@ -513,6 +513,7 @@ class PlayState extends MusicBeatState
|
|||
loadStage('stage');
|
||||
}
|
||||
|
||||
// all dis is shitty, redo later for stage shit
|
||||
var gfVersion:String = 'gf';
|
||||
|
||||
switch (curStage)
|
||||
|
@ -527,6 +528,11 @@ class PlayState extends MusicBeatState
|
|||
gfVersion = 'gf-tankmen';
|
||||
}
|
||||
|
||||
if (SONG.player1 == "pico")
|
||||
{
|
||||
gfVersion = "nene";
|
||||
}
|
||||
|
||||
if (SONG.song.toLowerCase() == 'stress')
|
||||
gfVersion = 'pico-speaker';
|
||||
|
||||
|
|
Loading…
Reference in a new issue