From 001dccb50a5a2f6929044d3d289af258d1a59e7a Mon Sep 17 00:00:00 2001 From: Cameron Taylor <cameron.taylor.ninja@gmail.com> Date: Tue, 6 Oct 2020 20:59:48 -0700 Subject: [PATCH] fixed build scripts and shit --- Project.xml | 6 ++++-- source/PlayState.hx | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Project.xml b/Project.xml index 3d1c1854e..a0e35ede9 100644 --- a/Project.xml +++ b/Project.xml @@ -2,7 +2,7 @@ <project> <!-- _________________________ Application Settings _________________________ --> - <app title="ld47" file="ld47" main="Main" version="0.0.1" company="HaxeFlixel" /> + <app title="Friday Night Funkin" file="Funkin" main="Main" version="0.0.1" company="HaxeFlixel" /> <!--The flixel preloader is not accurate in Chrome. You can use it regularly if you embed the swf into a html file or you can set the actual size of your file manually at "FlxPreloaderBase-onUpdate-bytesTotal"--> @@ -31,13 +31,15 @@ <set name="BUILD_DIR" value="export/release" unless="debug" /> <classpath name="source" /> - + <assets path="assets/images"/> <assets path="assets/data"/> <assets path="assets/music" include="*.mp3" if="web" /> <assets path="assets/music" include="*.ogg" unless="web" /> <assets path="assets/sounds" include="*.mp3" if="web" /> + <assets path="assets/sounds" include="*.ogg" unless="web" /> + <!-- _______________________________ Libraries ______________________________ --> diff --git a/source/PlayState.hx b/source/PlayState.hx index 394d5d0e8..de35d36a4 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -209,6 +209,7 @@ class PlayState extends FlxTransitionableState healthHeads.animation.add('unhealthy', [1]); healthHeads.y = healthBar.y - (healthHeads.height / 2); healthHeads.scrollFactor.set(); + healthHeads.antialiasing = true; add(healthHeads); super.create();