version 1 (from FNFPlayer101)

This commit is contained in:
Lucky56 2021-06-12 12:48:31 +02:00
parent b9fd68c98f
commit d42d04f587
No known key found for this signature in database
GPG Key ID: 19E3875EAD1F8B8F
6 changed files with 40 additions and 9 deletions

View File

@ -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) []() []()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 254 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<TextureAtlas imagePath="KadeEngineLogoBumpin.png">
<!-- Created with Adobe Animate version 21.0.2.37893 -->
<!-- http://www.adobe.com/products/animate.html -->
<SubTexture name="logo bumpin0000" x="0" y="0" width="851" height="529" pivotX="-26.4" pivotY="-104.4" frameX="-21" frameY="-11" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0001" x="851" y="0" width="895" height="555"/>
<SubTexture name="logo bumpin0002" x="851" y="0" width="895" height="555"/>
<SubTexture name="logo bumpin0003" x="0" y="555" width="869" height="539" frameX="-12" frameY="-7" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0004" x="0" y="555" width="869" height="539" frameX="-12" frameY="-7" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0005" x="869" y="555" width="862" height="534" frameX="-16" frameY="-9" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0006" x="869" y="555" width="862" height="534" frameX="-16" frameY="-9" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0007" x="869" y="555" width="862" height="534" frameX="-16" frameY="-9" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0008" x="869" y="555" width="862" height="534" frameX="-16" frameY="-9" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0009" x="869" y="555" width="862" height="534" frameX="-16" frameY="-9" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0010" x="869" y="555" width="862" height="534" frameX="-16" frameY="-9" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0011" x="869" y="555" width="862" height="534" frameX="-16" frameY="-9" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0012" x="869" y="555" width="862" height="534" frameX="-16" frameY="-9" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0013" x="869" y="555" width="862" height="534" frameX="-16" frameY="-9" frameWidth="895" frameHeight="555"/>
<SubTexture name="logo bumpin0014" x="869" y="555" width="862" height="534" frameX="-16" frameY="-9" frameWidth="895" frameHeight="555"/>
</TextureAtlas>

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

View File

@ -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');