almost releaaaase
This commit is contained in:
parent
ff354d2b69
commit
98a5401f4b
@ -3,12 +3,12 @@ color 0a
|
|||||||
cd ..
|
cd ..
|
||||||
@echo on
|
@echo on
|
||||||
echo BUILDING GAME
|
echo BUILDING GAME
|
||||||
lime build hl -debug
|
lime build windows -release
|
||||||
echo UPLOADING 64 BIT VERSION TO ITCH
|
echo UPLOADING 64 BIT VERSION TO ITCH
|
||||||
butler push ./export/debug/hl/bin ninja-muffin24/funkin:windows-64bit
|
butler push ./export/release/windows/bin ninja-muffin24/funkin:windows-64bit
|
||||||
lime build hl -debug -32
|
lime build windows -release -32
|
||||||
echo UPLOADING 32 BIT VERSION TO ITCH
|
echo UPLOADING 32 BIT VERSION TO ITCH
|
||||||
butler push ./export/debug/hl/bin ninja-muffin24/funkin:windows-32bit
|
butler push ./export/release/windows/bin ninja-muffin24/funkin:windows-32bit
|
||||||
butler status ninja-muffin24/funkin:windows-32bit
|
butler status ninja-muffin24/funkin:windows-32bit
|
||||||
butler status ninja-muffin24/funkin:windows-64bit
|
butler status ninja-muffin24/funkin:windows-64bit
|
||||||
echo ITCH SHIT UPDATED LMAOOOOO
|
echo ITCH SHIT UPDATED LMAOOOOO
|
||||||
|
1
assets/data/bopeebo/bopeebo-easy.json
Normal file
1
assets/data/bopeebo/bopeebo-easy.json
Normal file
File diff suppressed because one or more lines are too long
1
assets/data/bopeebo/bopeebo-hard.json
Normal file
1
assets/data/bopeebo/bopeebo-hard.json
Normal file
File diff suppressed because one or more lines are too long
@ -77,7 +77,7 @@ class FreeplayState extends MusicBeatState
|
|||||||
|
|
||||||
if (controls.BACK)
|
if (controls.BACK)
|
||||||
{
|
{
|
||||||
FlxG.switchState(new StoryMenuState());
|
FlxG.switchState(new MainMenuState());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (accepted)
|
if (accepted)
|
||||||
|
@ -275,9 +275,11 @@ class StoryMenuState extends MusicBeatState
|
|||||||
}
|
}
|
||||||
|
|
||||||
sprDifficulty.alpha = 0;
|
sprDifficulty.alpha = 0;
|
||||||
sprDifficulty.y -= 15;
|
|
||||||
|
|
||||||
FlxTween.tween(sprDifficulty, {y: sprDifficulty.y + 15, alpha: 1}, 0.07);
|
// USING THESE WEIRD VALUES SO THAT IT DOESNT FLOAT UP
|
||||||
|
sprDifficulty.y = leftArrow.y - 15;
|
||||||
|
|
||||||
|
FlxTween.tween(sprDifficulty, {y: leftArrow.y + 15, alpha: 1}, 0.07);
|
||||||
}
|
}
|
||||||
|
|
||||||
function changeWeek(change:Int = 0):Void
|
function changeWeek(change:Int = 0):Void
|
||||||
|
@ -120,12 +120,14 @@ class TitleState extends MusicBeatState
|
|||||||
gfDance.antialiasing = true;
|
gfDance.antialiasing = true;
|
||||||
add(gfDance);
|
add(gfDance);
|
||||||
|
|
||||||
titleText = new FlxSprite();
|
titleText = new FlxSprite(100, FlxG.height * 0.8);
|
||||||
titleText.frames = FlxAtlasFrames.fromSparrow(AssetPaths.titleEnter__png, AssetPaths.titleEnter__xml);
|
titleText.frames = FlxAtlasFrames.fromSparrow(AssetPaths.titleEnter__png, AssetPaths.titleEnter__xml);
|
||||||
titleText.animation.addByPrefix('idle', "Press Enter to Begin", 24);
|
titleText.animation.addByPrefix('idle', "Press Enter to Begin", 24);
|
||||||
titleText.animation.addByPrefix('press', "ENTER PRESSED", 24);
|
titleText.animation.addByPrefix('press', "ENTER PRESSED", 24);
|
||||||
titleText.antialiasing = true;
|
titleText.antialiasing = true;
|
||||||
titleText.animation.play('idle');
|
titleText.animation.play('idle');
|
||||||
|
titleText.updateHitbox();
|
||||||
|
// titleText.screenCenter(X);
|
||||||
add(titleText);
|
add(titleText);
|
||||||
|
|
||||||
var logo:FlxSprite = new FlxSprite().loadGraphic(AssetPaths.logo__png);
|
var logo:FlxSprite = new FlxSprite().loadGraphic(AssetPaths.logo__png);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user