0 reviews
  • Add Review
  • Subscribe
  • Nominate
  • Submit Media
  • RSS
Changed how battles look some.
  • Craze
  • Added: 05/20/2020 09:38 AM
  • Last updated: 04/19/2024 07:22 PM
  • 2002 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=Fomar0153
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


Thank you very much.
UPDATE: Changing the Radial Blur to (0, 0) also has the desired effect.
Craze
why would i heal when i could equip a morningstar
15170
yup iirc i changed the blur style and toned it down.
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.
Craze
why would i heal when i could equip a morningstar
15170
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.
It's fine, I sorted it for now by changing the Overworld tileset to Area instead of Field.
Pages: 1