Project1

标题: 关于第二币种的问题 [打印本页]

作者: wyw838    时间: 2019-3-31 13:24
标题: 关于第二币种的问题
emmm...在脚本中添加了银币的新币种..相关脚本如图,窗口代码附上。启动游戏时发现银币并没有显示==而且如果把金币字符串的颜色改掉金币也不见了...这是什么操作==求大佬们指教QWQ
RUBY 代码复制
  1. #==============================================================================
  2. # ■ Window_Gold
  3. #------------------------------------------------------------------------------
  4. #  显示金钱的窗口。
  5. #==============================================================================
  6. #修改了金币的显示,添加了银币的显示
  7. class Window_Gold < Window_Base
  8.   #--------------------------------------------------------------------------
  9.   # ● 初始化窗口
  10.   #--------------------------------------------------------------------------
  11.   def initialize
  12.     super(0, 0, 160, 64)
  13.     self.contents = Bitmap.new(width - 32, height - 32)
  14.     refresh
  15.   end
  16.   #--------------------------------------------------------------------------
  17.   # ● 刷新
  18.   #--------------------------------------------------------------------------
  19.   def refresh
  20.     self.contents.clear
  21.     cx = contents.text_size($data_system.words.gold).width
  22. ################################################################################
  23.     #self.contents.font.color = Color.new(248,181,81,0)
  24.     self.contents.draw_text(4, 0, 120-cx-2, 32, $game_party.gold.to_s, 2)
  25.     bitmap = Bitmap.new("Graphics/Money/" +"金币.png")
  26.     self.contents.blt(124-cx, 8, bitmap, Rect.new(0,0,114,114),255)
  27. ################################################################################
  28.     self.contents.font.color = Color.new(191,191,191,0)
  29.     self.contents.draw_text(4, 0, 0, 32, $game_party.silver.to_s,1)
  30.     bitmap = Bitmap.new("Graphics/Money/" +"银币.png")
  31.     self.contents.blt(62-cx, 8, bitmap, Rect.new(0,0,114,114),255)
  32.   end
  33. end
  34. #描绘图片写法 self.contents.blt(x, y, bitmap, Rect.new(x, y, 宽, 高),透明度)
  35. #bitmap 是图片文件, 例如 bitmap = RPG::Cache.picture("一张图片")
  36. #描绘文字写法 self.contents.draw_text(x, y, 宽, 高, 要描绘的字符串, 对齐0左1中2右)

@Y$5~(VQ6CND9BTY]96FSCW.png (907.97 KB, 下载次数: 22)

@Y$5~(VQ6CND9BTY]96FSCW.png

{[Z0LOGXVOC6YVB9ZLLFK)0.png (899.02 KB, 下载次数: 7)

{[Z0LOGXVOC6YVB9ZLLFK)0.png

(1.29 MB, 下载次数: 6)


作者: 灯笼菜刀王    时间: 2019-3-31 14:25
本帖最后由 灯笼菜刀王 于 2019-3-31 14:26 编辑

  原因有2,
其一, 字符串宽度为0, 没地方给它显示 self.contents.draw_text(4, 0, 0, 32, $game_party.silver.to_s,1)
其二, 颜色alpha为0, 显示了你也看不到 Color.new(191,191,191,0)
作者: wyw838    时间: 2019-4-1 22:23
本帖最后由 wyw838 于 2019-4-1 22:57 编辑

好吧,现在已经解决了,谢谢大佬QWQ




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