JengaSoft 0 Report post Posted January 6, 2012 Hi, I would like to put a panorama behind my transparent title screen. Is there a script or way to do that? Share this post Link to post Share on other sites
Moonpearl 32 Report post Posted January 6, 2012 (edited) 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 January 6, 2012 by Moonpearl Share this post Link to post Share on other sites