diff --git a/README.md b/README.md index f66a98b..80c1b49 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![Kade Engine logo](https://user-images.githubusercontent.com/26305836/110529589-4b4eb600-80ce-11eb-9c44-e899118b0bf0.png) +![Kade Engine logo](assets/preload/images/KadeEngineLogo.png) [![AppVeyor](https://img.shields.io/appveyor/build/KadeDev/Kade-Engine-Windows?label=windows%20build)](https://ci.appveyor.com/project/KadeDev/kade-engine-windows/branch/master/artifacts) [![AppVeyor](https://img.shields.io/appveyor/build/KadeDev/Kade-Engine-Macos?label=macOS%20build)](https://ci.appveyor.com/project/KadeDev/kade-engine-macos/branch/master/artifacts) [![AppVeyor](https://img.shields.io/appveyor/build/KadeDev/Kade-Engine-Linux?label=linux%20build)](https://ci.appveyor.com/project/KadeDev/kade-engine-linux/branch/master/artifacts) [![AppVeyor](https://img.shields.io/appveyor/build/daniel11420/KadeEngineWeb?label=html5&20build)](https://ci.appveyor.com/project/daniel11420/KadeEngineWeb) [![Discord](https://img.shields.io/discord/808039740464300104?label=discord)](https://discord.gg/MG6GQFh52U) [![GitHub issues](https://img.shields.io/github/issues/KadeDev/Kade-Engine)](https://github.com/KadeDev/Kade-Engine/issues) [![GitHub pull requests](https://img.shields.io/github/issues-pr/KadeDev/Kade-Engine)](https://github.com/KadeDev/Kade-Engine/pulls) []() []() diff --git a/assets/preload/images/KadeEngineLogo.png b/assets/preload/images/KadeEngineLogo.png index 7a77f25..0576090 100644 Binary files a/assets/preload/images/KadeEngineLogo.png and b/assets/preload/images/KadeEngineLogo.png differ diff --git a/assets/preload/images/KadeEngineLogoBumpin.png b/assets/preload/images/KadeEngineLogoBumpin.png new file mode 100644 index 0000000..717a211 Binary files /dev/null and b/assets/preload/images/KadeEngineLogoBumpin.png differ diff --git a/assets/preload/images/KadeEngineLogoBumpin.xml b/assets/preload/images/KadeEngineLogoBumpin.xml new file mode 100644 index 0000000..de5ee20 --- /dev/null +++ b/assets/preload/images/KadeEngineLogoBumpin.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/preload/images/KadeEngineLogoOld.png b/assets/preload/images/KadeEngineLogoOld.png new file mode 100644 index 0000000..c262f5b Binary files /dev/null and b/assets/preload/images/KadeEngineLogoOld.png differ diff --git a/source/TitleState.hx b/source/TitleState.hx index 8b5a281..6b86eca 100644 --- a/source/TitleState.hx +++ b/source/TitleState.hx @@ -163,14 +163,25 @@ class TitleState extends MusicBeatState // bg.updateHitbox(); add(bg); - logoBl = new FlxSprite(-150, -100); - logoBl.frames = Paths.getSparrowAtlas('logoBumpin'); - logoBl.antialiasing = true; - logoBl.animation.addByPrefix('bump', 'logo bumpin', 24); - logoBl.animation.play('bump'); - logoBl.updateHitbox(); - // logoBl.screenCenter(); - // logoBl.color = FlxColor.BLACK; + if(Main.watermarks) { + logoBl = new FlxSprite(-150, -100); + logoBl.frames = Paths.getSparrowAtlas('KadeEngineLogoBumpin'); + logoBl.antialiasing = true; + logoBl.animation.addByPrefix('bump', 'logo bumpin', 24); + logoBl.animation.play('bump'); + logoBl.updateHitbox(); + // logoBl.screenCenter(); + // logoBl.color = FlxColor.BLACK; + } else { + logoBl = new FlxSprite(-150, -100); + logoBl.frames = Paths.getSparrowAtlas('logoBumpin'); + logoBl.antialiasing = true; + logoBl.animation.addByPrefix('bump', 'logo bumpin', 24); + logoBl.animation.play('bump'); + logoBl.updateHitbox(); + // logoBl.screenCenter(); + // logoBl.color = FlxColor.BLACK; + } gfDance = new FlxSprite(FlxG.width * 0.4, FlxG.height * 0.07); gfDance.frames = Paths.getSparrowAtlas('gfDanceTitle');