version 1 (from FNFPlayer101)
This commit is contained in:
parent
b9fd68c98f
commit
d42d04f587
@ -1,4 +1,4 @@
|
|||||||

|

|
||||||
|
|
||||||
[](https://ci.appveyor.com/project/KadeDev/kade-engine-windows/branch/master/artifacts) [](https://ci.appveyor.com/project/KadeDev/kade-engine-macos/branch/master/artifacts) [](https://ci.appveyor.com/project/KadeDev/kade-engine-linux/branch/master/artifacts) [](https://ci.appveyor.com/project/daniel11420/KadeEngineWeb) [](https://discord.gg/MG6GQFh52U) [](https://github.com/KadeDev/Kade-Engine/issues) [](https://github.com/KadeDev/Kade-Engine/pulls) []() []()
|
[](https://ci.appveyor.com/project/KadeDev/kade-engine-windows/branch/master/artifacts) [](https://ci.appveyor.com/project/KadeDev/kade-engine-macos/branch/master/artifacts) [](https://ci.appveyor.com/project/KadeDev/kade-engine-linux/branch/master/artifacts) [](https://ci.appveyor.com/project/daniel11420/KadeEngineWeb) [](https://discord.gg/MG6GQFh52U) [](https://github.com/KadeDev/Kade-Engine/issues) [](https://github.com/KadeDev/Kade-Engine/pulls) []() []()
|
||||||
|
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 254 KiB |
BIN
assets/preload/images/KadeEngineLogoBumpin.png
Normal file
BIN
assets/preload/images/KadeEngineLogoBumpin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
20
assets/preload/images/KadeEngineLogoBumpin.xml
Normal file
20
assets/preload/images/KadeEngineLogoBumpin.xml
Normal 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>
|
BIN
assets/preload/images/KadeEngineLogoOld.png
Normal file
BIN
assets/preload/images/KadeEngineLogoOld.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 115 KiB |
@ -163,6 +163,16 @@ class TitleState extends MusicBeatState
|
|||||||
// bg.updateHitbox();
|
// bg.updateHitbox();
|
||||||
add(bg);
|
add(bg);
|
||||||
|
|
||||||
|
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 = new FlxSprite(-150, -100);
|
||||||
logoBl.frames = Paths.getSparrowAtlas('logoBumpin');
|
logoBl.frames = Paths.getSparrowAtlas('logoBumpin');
|
||||||
logoBl.antialiasing = true;
|
logoBl.antialiasing = true;
|
||||||
@ -171,6 +181,7 @@ class TitleState extends MusicBeatState
|
|||||||
logoBl.updateHitbox();
|
logoBl.updateHitbox();
|
||||||
// logoBl.screenCenter();
|
// logoBl.screenCenter();
|
||||||
// logoBl.color = FlxColor.BLACK;
|
// logoBl.color = FlxColor.BLACK;
|
||||||
|
}
|
||||||
|
|
||||||
gfDance = new FlxSprite(FlxG.width * 0.4, FlxG.height * 0.07);
|
gfDance = new FlxSprite(FlxG.width * 0.4, FlxG.height * 0.07);
|
||||||
gfDance.frames = Paths.getSparrowAtlas('gfDanceTitle');
|
gfDance.frames = Paths.getSparrowAtlas('gfDanceTitle');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user