mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-12 17:52:45 +00:00
darnell in progress
This commit is contained in:
parent
2705ae3e16
commit
237114c877
|
@ -492,8 +492,8 @@ class Character extends FlxSprite
|
||||||
quickAnimAdd('idle', 'Darnell Idle');
|
quickAnimAdd('idle', 'Darnell Idle');
|
||||||
quickAnimAdd('singUP', "Darnell pose up");
|
quickAnimAdd('singUP', "Darnell pose up");
|
||||||
quickAnimAdd('singDOWN', 'Darnell Pose Down');
|
quickAnimAdd('singDOWN', 'Darnell Pose Down');
|
||||||
quickAnimAdd('singRIGHT', 'Darnell pose right');
|
quickAnimAdd('singRIGHT', 'darnell pose left');
|
||||||
quickAnimAdd('singLEFT', 'darnell pose left');
|
quickAnimAdd('singLEFT', 'Darnell pose right'); // naming is reversed for left/right for darnell!
|
||||||
quickAnimAdd('laugh', 'darnell laugh');
|
quickAnimAdd('laugh', 'darnell laugh');
|
||||||
|
|
||||||
// temp
|
// temp
|
||||||
|
|
|
@ -33,6 +33,7 @@ import openfl.utils.ByteArray;
|
||||||
|
|
||||||
using StringTools;
|
using StringTools;
|
||||||
|
|
||||||
|
// add in "compiler save" that saves the JSON directly to the debug json using File.write() stuff on windows / sys
|
||||||
class ChartingState extends MusicBeatState
|
class ChartingState extends MusicBeatState
|
||||||
{
|
{
|
||||||
var _file:FileReference;
|
var _file:FileReference;
|
||||||
|
|
|
@ -619,6 +619,8 @@ class PlayState extends MusicBeatState
|
||||||
gf.x -= 170;
|
gf.x -= 170;
|
||||||
gf.y -= 75;
|
gf.y -= 75;
|
||||||
}
|
}
|
||||||
|
case 'stage':
|
||||||
|
dad.y = 870 - dad.height;
|
||||||
}
|
}
|
||||||
|
|
||||||
add(gf);
|
add(gf);
|
||||||
|
|
Loading…
Reference in a new issue