赞 | 40 |
VIP | 559 |
好人卡 | 234 |
积分 | 47 |
经验 | 251834 |
最后登录 | 2024-10-11 |
在线时间 | 5240 小时 |
Lv3.寻梦者 (版主) 八宝粥的基叔
- 梦石
- 0
- 星屑
- 4684
- 在线时间
- 5240 小时
- 注册时间
- 2009-4-29
- 帖子
- 14318
|
本帖最后由 protosssonny 于 2012-8-15 18:11 编辑
Window_Base类下第113至136行:- #--------------------------------------------------------------------------
- # ● 获取体力值槽颜色1
- #--------------------------------------------------------------------------
- def hp_gauge_color1
- return text_color(20)
- end
- #--------------------------------------------------------------------------
- # ● 获取体力值槽颜色2
- #--------------------------------------------------------------------------
- def hp_gauge_color2
- return text_color(21)
- end
- #--------------------------------------------------------------------------
- # ● 获取魔力值槽颜色1
- #--------------------------------------------------------------------------
- def mp_gauge_color1
- return text_color(22)
- end
- #--------------------------------------------------------------------------
- # ● 获取魔力值槽颜色2
- #--------------------------------------------------------------------------
- def mp_gauge_color2
- return text_color(23)
- end
复制代码 把20-23换成其他的数字。其中这些数字对应的颜色
注意,应该使用两种接近的颜色,因为这里要执行颜色渐变,颜色差异过大会很难看。 |
评分
-
查看全部评分
|