By KrishGM
Introduction
This script shows a image before the title screen like a company's logo in may video games.
How To Use
Install the script below the materials section and above the Main section.
Script
Spoiler
Code:
=begin Title Transitions ScriptBy Krish GMMake a Image of 544x416 for your logoImport into the Graphics/System folderName it LogoA=endShow_Image = true #asks whether you want to show it or not. def show_logosprite = Sprite.newGraphics.fadeout(0) Audio.se_play("Audio/SE/Wind10",74,74) #you can change the se to anything you want.sprite.bitmap = Cache.system('LogoA')Graphics.fadein(120)#Set the number to frames for the fadein.Graphics.wait(90)#Set how much time it shows the image.Graphics.fadeout(120)#Set the number to frames for the fadeout.end #don't tamper with thisshow_logo unless Show_Image == falseCredits
KrishGM (Me)