Jump to content
New account registrations are disabed. This website is now an archive. Read more here.
  • 0
Sign in to follow this  
NightmareFelix

Quick and Easy Question

Question

Okay. I want a couple opening graphics for production team logos, prior to the main menu. Help me script this. I figure it goes in Scene_Title right before the title graphic is made, but I don't know how to ensure it shows each graphic for a second. I would also sort of like to let the player skip it by hitting enter.

Share this post


Link to post
Share on other sites

4 answers to this question

Recommended Posts

  • 0

You can just place it outside of a class, or in the beginning of the main/initialize method of Scene_Title.

 

 

Graphics.freeze
sprite = Sprite.new
sprite.bitmap = RPG::Cache.picture('name of graphic')
Graphics.transition
count = 0
while count < 200 # 5 seconds
 Graphics.update
 count += 1
  break if Input.trigger?(Input::C)
end
Graphics.freeze
sprite.dispose

Edited by ForeverZer0

Share this post


Link to post
Share on other sites
  • 0

Hey NightmareFelix I don't know if you have found a solution that you liked yet so I found a script for splash screens for ya! Here's the link http://www.rmxpunlimited.net/forums/topic/4599-introduction-splash-screen/

I hope I helped you. Later guys!!!

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...