almost releaaaase

This commit is contained in:
Cameron Taylor 2020-10-31 21:55:00 -07:00
parent 62abd32b97
commit f0fafbaee8
6 changed files with 14 additions and 8 deletions

View File

@ -3,12 +3,12 @@ color 0a
cd ..
@echo on
echo BUILDING GAME
lime build hl -debug
lime build windows -release
echo UPLOADING 64 BIT VERSION TO ITCH
butler push ./export/debug/hl/bin ninja-muffin24/funkin:windows-64bit
lime build hl -debug -32
butler push ./export/release/windows/bin ninja-muffin24/funkin:windows-64bit
lime build windows -release -32
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-64bit
echo ITCH SHIT UPDATED LMAOOOOO

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -77,7 +77,7 @@ class FreeplayState extends MusicBeatState
if (controls.BACK)
{
FlxG.switchState(new StoryMenuState());
FlxG.switchState(new MainMenuState());
}
if (accepted)

View File

@ -275,9 +275,11 @@ class StoryMenuState extends MusicBeatState
}
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

View File

@ -120,12 +120,14 @@ class TitleState extends MusicBeatState
gfDance.antialiasing = true;
add(gfDance);
titleText = new FlxSprite();
titleText = new FlxSprite(100, FlxG.height * 0.8);
titleText.frames = FlxAtlasFrames.fromSparrow(AssetPaths.titleEnter__png, AssetPaths.titleEnter__xml);
titleText.animation.addByPrefix('idle', "Press Enter to Begin", 24);
titleText.animation.addByPrefix('press', "ENTER PRESSED", 24);
titleText.antialiasing = true;
titleText.animation.play('idle');
titleText.updateHitbox();
// titleText.screenCenter(X);
add(titleText);
var logo:FlxSprite = new FlxSprite().loadGraphic(AssetPaths.logo__png);