X normal...
2 participantes
Como chamar imagen por scripts?
MalucaoBeleza- Desenvolvedor
- Medalhas :
Mensagens : 723
Créditos : 58
- Mensagem nº12
Re: Como chamar imagen por scripts?
- Código:
Class Chamando_img < Window_Base
def initialize
super(270, 40, 200, 200)
self.contents = Bitmap.new(width - 32, height - 32)
@closable = true
refresh
end
def refresh
self.contents.clear
if $game_variables[48] == 1
self.contents = Bitmap.new("teste')
self.contents.draw_text(0, 0, 256, 32, "txt ")
self.contents.draw_text(0, 25, 256, 32, "txt ")
self.contents.draw_text(0, 50, 256, 32, "txt")
end
end
agora só adicionar no net scene hud