Project1

标题: 关于在地图上显示变量与图标的脚本的问题 [打印本页]

作者: PAME    时间: 2009-8-5 13:00
标题: 关于在地图上显示变量与图标的脚本的问题
  1. #------------------------------------------------------------------------
  2.   # 设定要显示的变量号
  3.   $variables_id = 1
  4.   
  5.   # 设置图标显示号
  6.   $icon_index = 145  
  7. #------------------------------------------------------------------------

  8. # 新建窗口
  9. class Window_Variables < Window_Base
  10.   # 初始化
  11.   def initialize
  12.     # 创建大小
  13.     super(0,360,128,56)
  14.     # 获取图标编号
  15.     @icon = 0
  16.     # 获取变量编号
  17.     @variable = 0
  18.     # 刷新
  19.     refresh
  20.   # 初始化结束
  21.   end
  22.   # 刷新
  23.   def refresh
  24.     # 在图表与变量都有变化的情况下
  25.     if @icon != $icon_index or @variable != $game_variables[$variables_id]
  26.       # 清楚内容
  27.       self.contents.clear
  28.       # 描绘图表
  29.       draw_icon($icon_index,40,0,true)
  30.       # 描绘变量,偏右
  31.       self.contents.draw_text(32,0,64,24,$game_variables[$variables_id].to_s,2)
  32.       # 带入变量
  33.       @icon = $icon_index
  34.       @variable = $game_variables[$variables_id]
  35.     # if 结束
  36.     end
  37.   # 刷新结束
  38.   end
  39. # class 结束
  40. end

  41. # 地图生成窗口
  42. class Scene_Map < Scene_Base
  43.   # 生成窗口
  44.   alias new_start start
  45.   def start
  46.     new_start
  47.     @varia_window = Window_Variables.new
  48.   end
  49.   # 刷新窗口
  50.   alias new_update update
  51.   def update
  52.     new_update
  53.     @varia_window.refresh
  54.   end
  55.   # 释放窗口
  56.   alias new_terminate terminate
  57.   def terminate
  58.     @varia_window.dispose
  59.     new_terminate
  60.   end
  61. # class 结束
  62. end
复制代码

这是个在地图上显示变量与图标的脚本,请问怎样使它收起、展开
作者: 雪流星    时间: 2009-8-5 20:57
  1. def update
  2.     new_update
  3.     @varia_window.refresh
  4. end
复制代码
这段改成
  1. def update
  2.   new_update
  3.   @varia_window.refresh
  4.   @varia_window.visible = $game_switches[[color=Red]X[/color]]
  5. end
复制代码
红色的X指你喜欢的系统开关ID
设定後用那个开关将窗口隐藏、显现
作者: PAME    时间: 2009-8-6 15:47
没用啊,

A168C072-B07E-4641-8241-C8C84CA55417.jpg (12.73 KB, 下载次数: 10)

A168C072-B07E-4641-8241-C8C84CA55417.jpg

作者: zh99998    时间: 2009-8-8 09:20
帮顶……
作者: 雪流星    时间: 2009-8-8 11:28
代码问题....我忘了用 [code]匡起来会显示原代码...文字没变色
试试看把
[code]@varia_window.visible = $game_switches[X] [code]
替换成
@varia_window.visible = $game_switches[X]




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