赞 | 0 |
VIP | 25 |
好人卡 | 0 |
积分 | 1 |
经验 | 126953 |
最后登录 | 2020-5-5 |
在线时间 | 39 小时 |
Lv1.梦旅人 粉蜘蛛秀秀
- 梦石
- 0
- 星屑
- 76
- 在线时间
- 39 小时
- 注册时间
- 2007-6-4
- 帖子
- 384
|
不好意思 没注意
找到以下class Window_Base < Window
#--------------------------------------------------------------------------
# ● 名前の描画
#--------------------------------------------------------------------------
def draw_actor_name(actor, x, y, width = 120, align = 0)
self.contents.font.color = normal_color
align = 1 if $scene.is_a?(Scene_Battle)
self.contents.draw_text(x, y, width, 32, actor.name, align)
end
/QUOTE]
替换成
[quote]
class Window_Base < Window
#--------------------------------------------------------------------------
# ● 名前の描画
#--------------------------------------------------------------------------
def draw_actor_name(actor, x, y, width = 120, align = 0)
if $scene.is_a?(Scene_Battle)
align = 1
self.contents.font.color = Color.new(这里填写颜色RGBA)
else
self.contents.font.color = normal_color
end
self.contents.draw_text(x, y, width, 32, actor.name, align)
end 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|