Adding Custom Logo TItle Screen - kadedevteam/Kade-Engine-Offical GitHub Wiki

Adding Custom Logo/TitleScreen

To add custom logos you will need to have the ability to compile the game from the source code! Info for compiling the game can be found here!

this is pretty simple so lemme make this quick!

Open TitleState.hx

Logo - CTRL+F logoBl and change the things depending on the png and xml animations names OR just replace the logoBumpin.png and xml with the new ones you made.

GF animation next to logo - CTRL+F gfDance. Change them accordingly to the new png and xml files OR leave them like that and just replace the assets.

Text before logo - CTRL+F switch (curBeat). This switch case statement let’s you change the pacing/order of the text by changing the number after ‘case’. Make sure you don’t go over 16 or else the beat will be off. Here you can change any text, add new text, remove text and put images, etc.

switch (curBeat)
{
   case 1:
       createCoolText(['Tuxsuper', 'creaai']);
   // credTextShit.visible = true;
}

IF I MISSED ANYTHING PLEASE FIX IT IN A PULL REQUEST