- Joined
- Jun 1, 2012
- Messages
- 1
- Reaction score
- 0
- First Language
- English
- Primarily Uses
Hello i am wondering, Is it possible to play a movie before the title screen? then when you press a confirm button it skips the movie.
thanks.
thanks.
#==============================================================================
# ** 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
#--------------------------------------------------------------------------
# * Execute
#--------------------------------------------------------------------------
def self.run
DataManager.init
Audio.setup_midi if use_midi?
self.run_map
@scene.main while @scene
end
#--------------------------------------------------------------------------
# * Run Map
#--------------------------------------------------------------------------
def self.run_map
DataManager.setup_new_game
$game_map.autoplay
SceneManager.goto(Scene_Map)
end
end
VX did, I havent tried on Ace yet. Figured ide suggest. You methed looks great, though.Playing a movie before the title screen is not that hard.
Place an autorun event on an empty map and place the player starting point on that map
start the movie in it, after that transfer the player to the real start map (after a fade out or stuff) and use the event command return to title.
Place this in you script Editor(below materials and above main):
It will bring you directly to the map instead of the titlescreen.Code:#============================================================================== # ** 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 #-------------------------------------------------------------------------- # * Execute #-------------------------------------------------------------------------- def self.run DataManager.init Audio.setup_midi if use_midi? self.run_map @scene.main while @scene end #-------------------------------------------------------------------------- # * Run Map #-------------------------------------------------------------------------- def self.run_map DataManager.setup_new_game $game_map.autoplay SceneManager.goto(Scene_Map) end end
Stopping the moving by pressing a key is a bit more difficult, since it's not reacting while playing a movie...
I don't know about that.
PS: I think Ace doesn't play gif files...