Jump to content
New account registrations are disabed. This website is now an archive. Read more here.
JengaSoft

[Request] Panorama Title Screen

Recommended Posts

This is quite simple, actually. Edit the Scene_Title script, Search for @sprite = Sprite.new, and right before that line, add the following:

 

@panorama = Plane.new
@panorama.bitmap = Cache.panorama(filename)

 

Replace filename with the name of the panorama you'd like to display. If you want it to scroll, add the following to Scene_Title's update method:

 

@panorama.ox += 1  # Horizontal scroll
@panorama.oy += 1  # Vertical scroll

 

Change the values according to the desired effect. Finally, don't forget to remove the panorama once the scene changes. To do this, search for @sprite.dispose, and right after, add the following:

 

@panorama.dipose

 

This should do the trick.

Edited by Moonpearl

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

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...