Project1

标题: 个别描绘角色名字 [打印本页]

作者: 火焰卷轴    时间: 2014-1-8 13:02
标题: 个别描绘角色名字
1号角色名字用红色字
2号角色名字用黄色字
等等
请问要怎么做?
作者: 正太君    时间: 2014-1-8 21:40
Window_Base页下找到定义def draw_actor_name(actor, x, y)
将定义改成
  1.   def draw_actor_name(actor, x, y)
  2.     case actor.id
  3.     when 1
  4.       self.contents.font.color = Color.new(255,255,128)
  5.     when 2
  6.       self.contents.font.color = Color.new(64,64,128)
  7.     end  
  8.     self.contents.draw_text(x, y, 108, WLH, actor.name)
  9.   end
复制代码
其中when 1,when 2表示当角色ID为1、2时的颜色,可以仿照着增加3、4等等,但是最后的end不要漏了...
Color.new(255,255,128)这个是颜色,自己改变括号里面的三个数值试试就能看见不同的颜色,注意数字的取值是0-255...
接下来请楼主自由发挥吧




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