diff --git a/CHANGELOG.md b/CHANGELOG.md index c650752a..cc5d7fa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,18 @@ All notable changes will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] +### Changed +- ASSET LOADING OVERHAUL, WAY FASTER LOAD TIMES ON WEB!!! (THANKS TO GEOKURELI WOKE KING) +### Fixed +- That one random note on Bopeebo + ## [0.2.7.1] - 2021-02-14 ### Added - Easter eggs - readme's in desktop versions of the game ### Changed + - New icons, old one was placeholder since October woops! - Made the transitions between the story mode levels more seamless. - Offset of the Newgrounds logo on boot screen. diff --git a/assets/preload/data/bopeebo/bopeebo-easy.json b/assets/preload/data/bopeebo/bopeebo-easy.json index 02ee15fd..7eefadad 100644 Binary files a/assets/preload/data/bopeebo/bopeebo-easy.json and b/assets/preload/data/bopeebo/bopeebo-easy.json differ diff --git a/assets/preload/data/bopeebo/bopeebo-hard.json b/assets/preload/data/bopeebo/bopeebo-hard.json index 7c3d942d..b5a167d2 100644 Binary files a/assets/preload/data/bopeebo/bopeebo-hard.json and b/assets/preload/data/bopeebo/bopeebo-hard.json differ diff --git a/assets/preload/data/bopeebo/bopeebo.json b/assets/preload/data/bopeebo/bopeebo.json index 02ee15fd..7eefadad 100644 Binary files a/assets/preload/data/bopeebo/bopeebo.json and b/assets/preload/data/bopeebo/bopeebo.json differ diff --git a/source/ControlsSubState.hx b/source/ControlsSubState.hx index 236d4a64..f35d74cc 100644 --- a/source/ControlsSubState.hx +++ b/source/ControlsSubState.hx @@ -8,8 +8,5 @@ class ControlsSubState extends FlxSubState public function new() { super(); - - var bullshit = new FlxSprite().makeGraphic(100, 100); - add(bullshit); } }