Project1

标题: 指令文字顏色怎麼改? [打印本页]

作者: ms0688987    时间: 2010-8-14 19:35
标题: 指令文字顏色怎麼改?
戰斗中  命令欄的指令文字顏色怎麼改?

預設是normal_color

我自己定義了一個block_color

可是找不到self.contents.font.color = normal_color在哪裡

還是另外的寫法設定的?

拜託大大幫忙@@"
作者: 后知后觉    时间: 2010-8-14 21:44
Window_Command 里面的这一段
  #--------------------------------------------------------------------------
  # ● 描绘项目
  #     index : 项目编号
  #     color : 文字色
  #--------------------------------------------------------------------------
  def draw_item(index, color)
    self.contents.font.color = color
    rect = Rect.new(4, 32 * index, self.contents.width - 8, 32)
    self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
    self.contents.draw_text(rect, @commands[index])
  end

不过改这里的话.这个类生成的所有实例对象就都是那个颜色了
作者: ms0688987    时间: 2010-8-14 23:21
沒辦法只在 if $game_temp.in_battle 中

怎麼樣才能在戰斗中出現就好了
作者: 莫小兮    时间: 2010-8-15 01:52
对话窗口里的文字如果只是要他普通变换颜色,LZ查看帮助就可以了。要是想要丰富颜色种类LZ就到base里面找到设定颜色的地方,添加新的颜色!我已经试过了。可以的




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