[ACE] Splash Screen Sound

SlaveOfThaMind

Game Developer / Musician
Veteran
Joined
Jul 10, 2013
Messages
239
Reaction score
23
First Language
English
Primarily Uses
So I've got the splash screen logo set up for my game. It works beautifully.
I'm wondering though, if I would be able to add a sound effect along side the
picture? (such as a clock ticking)

here is the script in question

# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
# Splash Screen VXA
# Author: Soulpour777
# Version 1
# Description: Creates a splash screen at the start of the game.
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

#==============================================================================
# ** SceneManager
#------------------------------------------------------------------------------
# This module manages scene transitions. For example, it can handle
# hierarchical structures such as calling the item screen from the main menu
# or returning from the item screen to the main menu.
#==============================================================================
module SceneManager
#--------------------------------------------------------------------------
# * Get First Scene Class
#--------------------------------------------------------------------------
def self.first_scene_class
$BTEST ? Scene_Battle : Scene_Splash
end
end

#==============================================================================
# ** Splash
#------------------------------------------------------------------------------
# This module manages the image shown as a splash screen.
#==============================================================================
module Splash
#--------------------------------------------------------------------------
# * Create Splash Image
#--------------------------------------------------------------------------
def self.create_splash_image
@splash = Plane.new
@splash.bitmap = Cache.system("Splash")
end
#--------------------------------------------------------------------------
# * Dispose Splash Image
#--------------------------------------------------------------------------
def self.dispose_splash_image
@splash.bitmap.dispose
@splash.dispose
end
end

class Scene_Splash < Scene_Base
#--------------------------------------------------------------------------
# * Start Processing
#--------------------------------------------------------------------------
def start
super
RPG::BGM.stop
RPG::BGS.stop
Graphics.transition(60)
Graphics.freeze
Splash.create_splash_image
end
#--------------------------------------------------------------------------
# * Termination Processing
#--------------------------------------------------------------------------
def terminate
super
Splash.dispose_splash_image
end
#--------------------------------------------------------------------------
# * Frame Update
#--------------------------------------------------------------------------
def update
super
SceneManager.goto(Scene_Title)
Graphics.wait(120)
Graphics.fadeout(60)
end
#--------------------------------------------------------------------------
# * Execute Transition
#--------------------------------------------------------------------------
def perform_transition
Graphics.transition(30)
end
end
 
Last edited by a moderator:

Venka

Veteran
Veteran
Joined
Jun 20, 2012
Messages
945
Reaction score
365
First Language
English
Primarily Uses
this should do it

Code:
#--------------------------------------------------------------------------# * Start Processing#--------------------------------------------------------------------------def start  super  RPG::BGM.stop  RPG::BGS.stop  Graphics.transition(60)  Graphics.freeze  RPG::BGS.new("Clock", 100, 100).play  Splash.create_splash_imageend
 

SlaveOfThaMind

Game Developer / Musician
Veteran
Joined
Jul 10, 2013
Messages
239
Reaction score
23
First Language
English
Primarily Uses
this should do it

#--------------------------------------------------------------------------# * Start Processing#--------------------------------------------------------------------------def start super RPG::BGM.stop RPG::BGS.stop Graphics.transition(60) Graphics.freeze RPG::BGS.new("Clock", 100, 100).play Splash.create_splash_imageend
You are beautiful! Thanks =)

This is perfect!
 

Shaz

Veteran
Veteran
Joined
Mar 2, 2012
Messages
40,098
Reaction score
13,704
First Language
English
Primarily Uses
RMMV
I've moved this thread to RGSSx Script Support. Please be sure to post your threads in the correct forum next time. Thank you.
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Posts

Latest Profile Posts

Couple hours of work. Might use in my game as a secret find or something. Not sure. Fancy though no? :D
Holy stink, where have I been? Well, I started my temporary job this week. So less time to spend on game design... :(
Cartoonier cloud cover that better fits the art style, as well as (slightly) improved blending/fading... fading clouds when there are larger patterns is still somewhat abrupt for some reason.
Do you Find Tilesetting or Looking for Tilesets/Plugins more fun? Personally I like making my tileset for my Game (Cretaceous Park TM) xD
How many parameters is 'too many'??

Forum statistics

Threads
105,867
Messages
1,017,061
Members
137,575
Latest member
akekaphol101
Top