J'ai tenter sur un forum , pas de reponse , voici mon script window base:
- =================================================
=============================
- -------------------------------------------------
-----------------------------
- This is a superclass of all windows in the game.
- =================================================
=============================
class Window_Base < Window
- -------------------------------------------------
-------------------------
# * Constants
- -------------------------------------------------
-------------------------
WLH = 24 # Window Line Height
- -------------------------------------------------
-------------------------
# * Object Initialization
# x : window x-coordinate
# y : window y-coordinate
# width : window width
# height : window height
- -------------------------------------------------
-------------------------
def initialize(x, y, width, height)
super()
self.windowskin = Cache.system("Window")
self.x = x
self.y = y
self.width = width
self.height = height
self.z = 100
self.back_opacity = 200
self.openness = 255
create_contents
@opening = false
@closing = false
end
Ils disent que le probleme viens de la ligne 22...
(je n'ai pas copié tt le script , seulement jusqu'à la ligne 32...)