I know that this issue has been addressed before, but this is a new query, as the suggested solution(s) do not work for me. The following was tested in a new project, with no added scripts, so I know that it is not being caused by a custom script overwriting anything.
The usual problem: the main window shows up as transparent. One solution proposed was this:
Also, remember that windows are by default transparent. You'd have to set its back opacity to 255 in Window_Base:
self.windowskin = Cache.system("Window") self.back_opacity = 255 self.openness = 255So I added the 2nd and 3rd lines under the first in my default script. Made no difference.
I then tried this snippet I found, putting under 'Material' and above 'Main'
class Window_Base alias kalacious_opaquewin_iniz_8ba5 initialize def initialize(*args) kalacious_opaquewin_iniz_8ba5(*args) # Call Original Method self.back_opacity = 255 endendAgain, it had no effect.
The Help file says that the default setting is 192. Using ctrl+f search did not turn up 192 anywhere in the Window_Base script.
I did, however, see this section which refers to translucent, so I tried changing it to 192
def translucent_alpha return 160 endMade no difference.
I now cannot think what else to try. Please can someone explain, in fool-proof terms, what I ought to be doing.
Thanks