Olá pessoal, estou com uma duvida, eu fiz tudo certinho eu acho segui a aula do marlos pra criar windows, e não aparece a minha window, eu queria que quando apertace O, aparecia uma janela de window
mais eu ja coloquei tudo certo mais não consegui, tem como alguem me ajudar?
Olha o script aqui
se alguem puder me ajudar estarei muito grato!!
mais eu ja coloquei tudo certo mais não consegui, tem como alguem me ajudar?
Olha o script aqui
- Spoiler:
- #--------------------------------------------------------------------------
# * Janela Simples
#--------------------------------------------------------------------------
class Mundo_mundi< Window_Base
def initialize
super(225,160,460,370) # Posição e Tamanho do Menu
self.contents = Bitmap.new(width - 32, height - 32)
self.windowskin = RPG::Cache.windowskin("WindskinA")
@dragable = true #Permite arrastar a windowskin
@closable = true #Permite fechar a windowskin
self.z = 999999
self.back_opacity = 500
refresh
end
if Input.trigger?(Input::Letters["O"])
def update
super
refresh if something_changed?
end
def on_close
self.visible = false
self.active = false
$fechando_ativar = true
end
refresh
self.contents.clear
# Mostra a imagem de fundo
fundo3 = RPG::Cache.picture("FUNDO_MENU")
fundo1 = fundo3.width
fundo2 = fundo3.height
fundo4 = Rect.new(0,0,fundo1,fundo2)
end
end
se alguem puder me ajudar estarei muito grato!!