设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索

怎么显示金钱窗口啊

查看数: 3507 | 评论数: 12 | 收藏 0
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2009-11-5 20:05

正文摘要:

怎么显示金钱窗口啊

回复

气味123 发表于 2009-11-12 12:30:22
我说的是金钱变量1都显示出来
Eienshinken 发表于 2009-11-10 00:41:01
本帖最后由 Eienshinken 于 2009-11-10 00:42 编辑
  1. # 设置项目==========================================
  2. module Eienshinken
  3. #开关编号
  4. VAR = 1
  5. #窗口显示的字符
  6. STRING = "金币"
  7. end
  8. #===================================================

  9. class Scene_Map
  10.   alias qiwei_main main
  11.   def main
  12.     @gg = Window_Variables.new
  13.     @gg.x = 640 - @gg.width
  14.     @gg.y = 480 - @gg.height
  15.     @gg.opacity = 120
  16.     qiwei_main
  17.     @gg.dispose
  18.   end
  19.   alias shuaxin_update update
  20.   def update
  21.     shuaxin_update
  22.     @gg.update
  23.   end
  24. end
  25. #==============================================================================
  26. # ■ Window_Variables
  27. #------------------------------------------------------------------------------
  28. #  显示某变量的窗口。
  29. #==============================================================================

  30. class Window_Variables < Window_Base
  31.   #--------------------------------------------------------------------------
  32.   # ● 初始化窗口
  33.   #--------------------------------------------------------------------------
  34.   def initialize
  35.     super(0, 0, 160, 64)
  36.     self.contents = Bitmap.new(width - 32, height - 32)
  37.     @variables = $game_variables[Eienshinken::VAR]
  38.     refresh
  39.   end
  40.   #--------------------------------------------------------------------------
  41.   # ● 刷新
  42.   #--------------------------------------------------------------------------
  43.   def refresh
  44.     self.contents.clear
  45.     cx = contents.text_size($game_variables[Eienshinken::VAR].to_s).width
  46.     self.contents.font.color = normal_color
  47.     self.contents.draw_text(4, 0, 120-cx-2, 32, $game_variables[Eienshinken::VAR].to_s, 0)
  48.     self.contents.font.color = system_color
  49.     cx = contents.text_size("#{Eienshinken::STRING}").width
  50.     self.contents.draw_text(124-cx, 0, cx, 32, "#{Eienshinken::STRING}", 2)
  51.   end
  52.   def update
  53.     super
  54.     if  @variables != $game_variables[Eienshinken::VAR]
  55.       refresh
  56.     end
  57.   end
  58. end

复制代码
许诺言 发表于 2009-11-9 22:03:03
貌似很深奥的东西
显示在那里干什么的?
气味123 发表于 2009-11-9 21:20:10
如果我要在加样变量1进去了
怎么改后面的金字
天使喝可乐 发表于 2009-11-6 17:46:52
把/G显示的窗口的位置更改下就好了嘛
IamI 发表于 2009-11-6 17:28:57
  1. class Scene_Map
  2.   alias qiwei_main main
  3.   def main
  4.     @gg = Window_Gold.new
  5.     @gg.x = 640 - @gg.width
  6.     @gg.y = 480 - @gg.height
  7.     @gg.opacity = 120
  8.     qiwei_main
  9.     @gg.dispose
  10.   end
  11. end
  12. # PS:Window_Gold没有Update也不实时刷新。
复制代码
凌辰 发表于 2009-11-6 17:27:55
拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-12-28 03:46

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表