赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 12421 |
最后登录 | 2016-8-14 |
在线时间 | 322 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 322 小时
- 注册时间
- 2011-6-24
- 帖子
- 274
|
请教下 怎么更改提示 字的大小 和 字的颜色- class Interpreter
- #--------------------------------------------------------------------------
- # ● 增减金钱
- #--------------------------------------------------------------------------
- def command_125
- value = operate_value(@parameters[0], @parameters[1], @parameters[2])
- $game_party.gain_gold(value)
- if $game_switches[$不显示金钱窗口]==false
- g = Window_Base.new((640-160)/2,128,180,100)
- g.contents = Bitmap.new(g.width - 32, g.height - 32)
- if value >= 0
- g.contents.draw_text(0,0,240,32,"获得金钱:")
- else
- g.contents.draw_text(0,0,240,32,"失去金钱:")
- end
- g.contents.draw_text(0,32,240,32,value.abs.to_s)
- g.contents.draw_text(0,32,140,32,"金钱")
- g.opacity = 160
- for i in 0..30
- Graphics.update
- end
- for i in 0..10
- g.opacity -= 30
- g.contents_opacity -= 30
- Graphics.update
- end
- g.dispose
- end
- return true
- end
复制代码 |
|