- Add Review
- Subscribe
- Nominate
- Submit Media
- RSS
- Craze
- Added: 05/20/2020 09:38 AM
- Last updated: 12/23/2024 02:58 PM
- 2051 views
Posts
Pages:
1
How'd you get the battle screen to just keep the Map as a backdrop instead of an actual set one or that swirly mess. I've wanted to do it for years.
author=RPGFan28
How'd you get the battle screen to just keep the Map as a backdrop instead of an actual set one or that swirly mess. I've wanted to do it for years.
Either comment out the line the line in Spriteset_Battle that does it or use a script e.g.
class Spriteset_Battle
#--------------------------------------------------------------------------
# * Create Battle Background Bitmap from Processed Map Screen
#--------------------------------------------------------------------------
def create_blurry_background_bitmap
source = SceneManager.background_bitmap
bitmap = Bitmap.new(640, 480)
bitmap.stretch_blt(bitmap.rect, source, source.rect)
#bitmap.radial_blur(120, 16)
bitmap
end
end
author=Fomar0153author=RPGFan28Either comment out the line the line in Spriteset_Battle that does it or use a script e.g.
How'd you get the battle screen to just keep the Map as a backdrop instead of an actual set one or that swirly mess. I've wanted to do it for years.
class Spriteset_Battle
#--------------------------------------------------------------------------
# * Create Battle Background Bitmap from Processed Map Screen
#--------------------------------------------------------------------------
def create_blurry_background_bitmap
source = SceneManager.background_bitmap
bitmap = Bitmap.new(640, 480)
bitmap.stretch_blt(bitmap.rect, source, source.rect)
#bitmap.radial_blur(120, 16)
bitmap
end
end
Thank you very much.
Now I'm trying to replicate it for my World Map, I can't seem to get things working, I tried setting in Spriteset_Battle having only one tile with a region, I just get a black background in combat.
I also tried removing all things to do with battle backdrops as I went, that too just nets me a black background in battle. Don't know what to do now. None of the forums are helpful, they tell me how to add them rather than subtract.
I also tried removing all things to do with battle backdrops as I went, that too just nets me a black background in battle. Don't know what to do now. None of the forums are helpful, they tell me how to add them rather than subtract.
i really don't remember the whole process off the top of my head. however, if the project isn't encrypted (i forget), feel free to poke around and see how i did stuff.
Pages:
1