diff --git a/Project.xml b/Project.xml index 566ccbcc8..32f3299ca 100644 --- a/Project.xml +++ b/Project.xml @@ -95,5 +95,5 @@ - + diff --git a/art/build-Itch-HTML-RELEASE.bat b/art/build-Itch-HTML-RELEASE.bat new file mode 100644 index 000000000..4024c8c65 --- /dev/null +++ b/art/build-Itch-HTML-RELEASE.bat @@ -0,0 +1,11 @@ +@echo off +color 0a +cd .. +@echo on +echo BUILDING GAME +lime build html5 -release +echo UPLOADING TO ITCH +butler push ./export/release/html5/bin ninja-muffin24/funkin:html5 +butler status ninja-muffin24/funkin:html5 +echo ITCH SHIT UPDATED LMAOOOOO +pause \ No newline at end of file diff --git a/source/StoryMenuState.hx b/source/StoryMenuState.hx index 0677c4e42..11017aff1 100644 --- a/source/StoryMenuState.hx +++ b/source/StoryMenuState.hx @@ -102,6 +102,7 @@ class StoryMenuState extends MusicBeatState case 'bf': weekCharacterThing.setGraphicSize(Std.int(weekCharacterThing.width * 0.9)); weekCharacterThing.updateHitbox(); + weekCharacterThing.x -= 80; case 'gf': weekCharacterThing.setGraphicSize(Std.int(weekCharacterThing.width * 0.5)); weekCharacterThing.updateHitbox(); @@ -145,8 +146,8 @@ class StoryMenuState extends MusicBeatState txtTracklist.font = rankText.font; txtTracklist.color = 0xFFe55777; add(txtTracklist); - add(rankText); - add(scoreText); + // add(rankText); + // add(scoreText); updateText(); diff --git a/source/TitleState.hx b/source/TitleState.hx index 23dbdfd9d..e84df9de1 100644 --- a/source/TitleState.hx +++ b/source/TitleState.hx @@ -103,7 +103,7 @@ class TitleState extends MusicBeatState // bg.updateHitbox(); add(bg); - logoBl = new FlxSprite(-100, -100); + logoBl = new FlxSprite(-150, -100); logoBl.frames = FlxAtlasFrames.fromSparrow(AssetPaths.logoBumpin__png, AssetPaths.logoBumpin__xml); logoBl.antialiasing = true; logoBl.animation.addByPrefix('bump', 'logo bumpin', 24); @@ -111,7 +111,6 @@ class TitleState extends MusicBeatState logoBl.updateHitbox(); // logoBl.screenCenter(); // logoBl.color = FlxColor.BLACK; - add(logoBl); gfDance = new FlxSprite(FlxG.width * 0.4, FlxG.height * 0.07); gfDance.frames = FlxAtlasFrames.fromSparrow(AssetPaths.gfDanceTitle__png, AssetPaths.gfDanceTitle__xml); @@ -119,6 +118,7 @@ class TitleState extends MusicBeatState gfDance.animation.addByIndices('danceRight', 'gfDance', [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "", 24, false); gfDance.antialiasing = true; add(gfDance); + add(logoBl); titleText = new FlxSprite(100, FlxG.height * 0.8); titleText.frames = FlxAtlasFrames.fromSparrow(AssetPaths.titleEnter__png, AssetPaths.titleEnter__xml);