Project1

标题: 【控制符颜色扩展】 [打印本页]

作者: VIPArcher    时间: 2014-10-12 13:04
标题: 【控制符颜色扩展】
本帖最后由 VIPArcher 于 2015-6-11 17:45 编辑

RUBY 代码复制
  1. #==============================================================================
  2. # ■ 控制符颜色扩展
  3. # By :VIPArcher [email: [email protected]]
  4. #  -- 本脚本来自 https://rpg.blue 使用或转载请保留以上信息。
  5. #==============================================================================
  6. $VIPArcherScript ||= {};$VIPArcherScript[:textcolor] = 20141012
  7. #--------------------------------------------------------------------------------
  8. module VIPArcher
  9.   Text_Color = { #<-这行不能删除
  10.    #颜色编号  #颜色(R  , G  , B [,A ]),
  11.     32 => Color.new(0  , 0  , 255,255),
  12.     33 => Color.new(0  , 255, 0      ),
  13.     34 => Color.new(255, 0  , 0      ),
  14.     35 => Color.new(233, 233, 233    )
  15.     #在这里继续追加。
  16.     };Text_Color.default = Color.new #<-这行不能删除
  17. end
  18. #--------------------------------------------------------------------------------
  19. class Window_Base < Window
  20.   #--------------------------------------------------------------------------
  21.   # ● 获取文字颜色
  22.   #     n : 文字颜色编号(0..31)
  23.   #--------------------------------------------------------------------------
  24.   alias vip_ex_text_color text_color
  25.   def text_color(n)
  26.     return VIPArcher::Text_Color[n] if n > 31
  27.     vip_ex_text_color(n)
  28.   end
  29. end





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