赞 | 0 |
VIP | 0 |
好人卡 | 110 |
积分 | 1 |
经验 | 24791 |
最后登录 | 2013-6-25 |
在线时间 | 687 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 687 小时
- 注册时间
- 2012-10-29
- 帖子
- 1543
|
不是我狠,是你做得讓我有心無力,一進 VA 版上方連著幾個都是你的問題帖,問的內容口氣也不怎麼好,
還幾乎都是連頂帖,別人都被你擠到下面去了,剛剛回應完的帖也在你那幾個帖的下面,
好心跟你提醒一下別過度,你還說無視你很過份,你認為我高興得起來嗎?
既然有人講明了,我就說了吧,菜單的數字都是在 Window_Base 中,其實你進一打開它看看內容應該都能知道在哪,
哪個是MP,哪個是HP的,腳本都注釋得明明白白,血條是在繪製HP那個 def draw_actor_hp(actor, x, y, width = 150) 處,
但血條上顯示的數字是在 當前值/最大值 那個 def draw_current_and_max_values(x, y, width, current, max, color1, color2),
至於要怎麼改您可以自己試試,draw_text 也只有幾個參數,試了就知道了,我提供的是自己的改法和示例圖,位置有改:- def draw_current_and_max_values(x, y, width, current, max, color1, color2)
- contents.font.bold = true
- change_color(color1)
- xr = x + width
- if width < 96
- draw_text(xr - 40, y, 42, line_height, current, 2)
- else
- draw_text(xr - 112, y, 62, line_height, current, 2)
- contents.font.color = text_color(4)
- contents.font.size -= 8
- draw_text(xr - 67, y, 12, line_height, " ", 2) #分隔符
- draw_text(xr - 55, y - 3, 55, line_height, max, 2) #最大值
- reset_font_settings
- end
- end
复制代码
|
评分
-
查看全部评分
|