I'm using the Suikoden Save Scene script, and i got a problem. How can i disabled the background? I try to delete the draw_bg command but the background became black other than become transparent. Can anybody help me? Please???
Script Link : https://www.rpgmakercentral.com/topic/16439-est-suikoden-saveload-scene/?_fromLogin=1#replyForm
Please Help! Unwanted BG
● ARCHIVED · READ-ONLY
-
-
'Product Discussion and Support' is for asking about dlc and Resource Packs, not for implementation questions.
[move]RGSSx Script Support[/move]
Please edit your post to include a link to the script you are referring to. Without it people won't be able to check what's in it in order to give you advice. -
I'm so sorry, please forgive me!'Product Discussion and Support' is for asking about dlc and Resource Packs, not for implementation questions.
[move]RGSSx Script Support[/move]
Please edit your post to include a link to the script you are referring to. Without it people won't be able to check what's in it in order to give you advice. -
Not a problem. Deciding the right place for a thread can be quite confusing at first, and we were all new once.
-
Having a black background if you disable the draw_bg makes sense.
What do you want it to show instead? -
I wanted the background to show a blur version of the map.Having a black background if you disable the draw_bg makes sense.
What do you want it to show instead? -
I've "photoshop" the example. Here's what i wanted it to look like :
-
When you say you tried to delete the draw_bg command, do you really mean the draw_save_bg command?
If so, try putting it back to what it was, and change this:
Code:def draw_save_bg @background = Sprite.new @background.bitmap = Cache.system(SUIKODEN_SAVE_BG_NAME) end
to this:
Code:def draw_save_bg @background = Sprite.new @background.bitmap = SceneManager.background_bitmap @background.color.set(16, 16, 16, 128) end
which is what the menu scenes use to create a blurred version of the map. -
thanks! You saved my life :)
-
I found that this only worked once. When you go back to the menu the background is gone and if you went into the save menu again the background was gone.
After a few hours of testing (and learning, I think) it works as desired like this.
Code:def draw_save_bg @background = Sprite.new @background.bitmap = SceneManager.background_bitmap @background.bitmap = Graphics.snap_to_bitmap @background.color.set(16, 16, 16, 128) #~ @background.bitmap = Cache.system(SUIKODEN_SAVE_BG_NAME) end -
Thank you so much!!!I found that this only worked once. When you go back to the menu the background is gone and if you went into the save menu again the background was gone.
After a few hours of testing (and learning, I think) it works as desired like this.
Code:def draw_save_bg @background = Sprite.new @background.bitmap = SceneManager.background_bitmap @background.bitmap = Graphics.snap_to_bitmap @background.color.set(16, 16, 16, 128) #~ @background.bitmap = Cache.system(SUIKODEN_SAVE_BG_NAME) end -
[closed]IgnoreMe[/closed]