
class Scene_Menu < Scene_MenuBase
#--------------------------------------------------------------------------
# * Start Processing
#--------------------------------------------------------------------------
alias dalhan_background_start start
def start
dalhan_background_start() #Calls the Original Method
create_dalhan_background
end
def create_dalhan_background
@dalhan_plane = Plane.new
@dalhan_plane.bitmap = Cache.parallax("Menu Screen")
end
def dispose_dalhan_background
@dalhan_plane.bitmap.dispose
@dalhan_plane.dispose
end
def return_scene
SceneManager.return
dispose_dalhan_background
end
end