Project1

标题: 刚在学习窗口脚本,碰到了个问题请教一下 [打印本页]

作者: xuxuanyun    时间: 2014-8-3 12:14
标题: 刚在学习窗口脚本,碰到了个问题请教一下
有设置了一个变量用于控制时段,不过只有变量值为0的时候才显示“上午”,其余均没有显示
是不是我本身的方式就不对了,情况如下所示,烦请指教一下。
  1. class Window_day < Window_Base
  2.   
  3.   def initialize
  4.     super(0, 0, 200, 200)
  5.     self.opacity = 0
  6.     refresh
  7.   end
  8.   
  9.     def update
  10.     super
  11.     refresh
  12.   end
  13.   
  14.   def refresh
  15.     self.contents.clear
  16.     self.contents.draw_text(0, 0, 100, 24, "第#{$game_variables[98]}天")
  17.         case $game_variables[99]
  18.         when 3
  19.          a1 = "深夜"
  20.         when 2
  21.          a1 = "夜晚"
  22.         when 1
  23.          a1 = "下午"
  24.         when 0
  25.          a1 = "上午"
  26.     self.contents.draw_text(0, 32, 100, 24, a1)
  27.     end
  28.   end
  29. end
复制代码

上午可以显示


下午以后的就都没有了……
作者: 喵呜喵5    时间: 2014-8-3 12:49
本帖最后由 喵呜喵5 于 2014-8-3 12:52 编辑

case的用法搞错了,你原本的代码中只有case when 0的时候才执行第二个draw_text方法,代码改成下面这样
  1.   def refresh
  2.     self.contents.clear
  3.     self.contents.draw_text(0, 0, 100, 24, "第#{$game_variables[98]}天")
  4.     case $game_variables[99]
  5.     when 3
  6.       a1 = "深夜"
  7.     when 2
  8.       a1 = "夜晚"
  9.     when 1
  10.       a1 = "下午"
  11.     when 0
  12.       a1 = "上午"
  13.     else
  14.       a1 = nil
  15.     end
  16.     self.contents.draw_text(0, 32, 100, 24, a1) if a1
  17.   end
复制代码
或者这样

RUBY 代码复制
  1. def refresh
  2.     self.contents.clear
  3.     self.contents.draw_text(0, 0, 100, 24, "第#{$game_variables[98]}天")
  4.     case $game_variables[99]
  5.     when 3
  6.       a1 = "深夜"
  7.       self.contents.draw_text(0, 32, 100, 24, a1)
  8.     when 2
  9.       a1 = "夜晚"
  10.       self.contents.draw_text(0, 32, 100, 24, a1)
  11.     when 1
  12.       a1 = "下午"
  13.       self.contents.draw_text(0, 32, 100, 24, a1)
  14.     when 0
  15.       a1 = "上午"
  16.       self.contents.draw_text(0, 32, 100, 24, a1)
  17.     end   
  18.   end


另外描绘文字需要花费一定的时间,因此refresh不建议放到update里面实时刷新,只有当这两个变量发生改变的时候再刷新
作者: 机械守护者    时间: 2014-8-3 17:23
你为什么不直接丢在update里面(ΦωΦ)




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