How can I make it so that an image shows in all scenes?
Like er...
@frame = Sprite.new
@frame.bitmap = RPG::Cache.picture('frames01')
/\ But show on every scene, including map, menu, battle, everything.
Edit:
Also
Is it possible to do something like this with the above:
if scene is Scene_Map, @frame.bitmap = RPG::Cache.picture('frame2')
else, @frame.bitmap = RPG::Cache.picture('frame')
....if so, where would I put this?
Like er...
@frame = Sprite.new
@frame.bitmap = RPG::Cache.picture('frames01')
/\ But show on every scene, including map, menu, battle, everything.
Edit:
Also
Is it possible to do something like this with the above:
if scene is Scene_Map, @frame.bitmap = RPG::Cache.picture('frame2')
else, @frame.bitmap = RPG::Cache.picture('frame')
....if so, where would I put this?