Project1

标题: 标题画面的字体颜色与字体类型?怎么改? [打印本页]

作者: lyl2008    时间: 2008-4-13 21:59
提示: 作者被禁止或删除 内容自动屏蔽
作者: 禾西    时间: 2008-4-13 22:09
第二次看見如此棘手的問題了==
具體需要重寫一個 Window_Command
複製粘貼原版的 Window_Command
修改class name 爲 Window_Command_002
打開Scene_Title
找到40行
修改    @command_window = Window_Command.new(192, [s1, s2, s3])
爲      @command_window = Window_Command_002.new(192, [s1, s2, s3])

然後重新打開 Window_Command_002
修改
  #--------------------------------------------------------------------------
  # ● 描绘项目
  #     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

加入分歧:
  #--------------------------------------------------------------------------
  # ● 描绘项目
  #     index : 项目编号
  #     color : 文字色
  #--------------------------------------------------------------------------
  def draw_item(index, color)
    if @commands[index] == "新游戏"
      self.contents.font.color = system_color
      self.contents.font.name = ["华文行楷"]
    else
      self.contents.font.color = color
      self.contents.font.name = ["黑体"]     
    end
    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

[LINE]1,#dddddd[/LINE]系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~
作者: havealook    时间: 2008-4-13 23:21
建议用图片标题菜单:http://rpg.blue/web/htm/news167.htm




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