All RMVX windowskins will work in RMVXA. Caveat: The "Window Color" will override the windowskin background colour unless you change it manually.
How To Import A Windowskin Into RMVXA
- Open the Resource Manager (F10).
- Import the RMVX Windowskin into the Graphics/Systemand set the transparencies (the same way you would in RMVX).
- Open the Database (F9) and in the System tab, double-click on Window Color to change the RGB accordingly via the sliders.
- In the same way as RMVX, the the Window_Base script needs to be modified to update to the new windowskin.
class Window_Base < Window alias cwvxws_initialize initialize def initialize(x, y, width, height) cwvxws_initialize(x, y, width, height) self.windowskin = Cache.system("Roma") end end
0 Comments So Far:
Post a Comment