Project1

标题: 怎么隐藏界面上的window [打印本页]

作者: fox1313304    时间: 2014-8-28 16:06
标题: 怎么隐藏界面上的window
我写了一个window
放在了游戏界面上 刚开始游戏黑屏进入的时候图片就刷新出来了
我想要的效果是黑屏结束之后再出UI
关于【让一个开关打开的时候脚本才生效】的开关如何定义
有人能告诉我么

↓window的脚本↓
  1. class Window_Button < Window_Base
  2.   
  3.   def initialize
  4.     super(544-55,40,55,100)
  5.     self.opacity = 0
  6.     refresh
  7.   end
  8.   
  9.   def update
  10.     super
  11.     refresh if $fefresh
  12.     refresh = false
  13.   end
  14.   
  15.   
  16.   def refresh
  17.     create_button
  18.   end
  19.   
  20.   def create_button
  21.     bitmap = Cache.system("S_button")
  22.     rect = Rect.new(0, 0, Graphics.width, Graphics.height)
  23.     contents.blt(0, 0, bitmap, rect, 200)
  24.     bitmap.dispose
  25.   end
  26.    
  27. end
复制代码
↓scene的脚本↓
  1. class Scene_Map < Scene_Base
  2.   alias ms_sta start
  3.   def start
  4.     ms_sta
  5.     @button_window=Window_Button.new
  6.   end

  7. end
复制代码

作者: taroxd    时间: 2014-8-28 16:47
window 的 update 里面加上
self.visible = $game_switches[开关ID] 试试看




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1