Project1

标题: 请问为什么游戏中的字没有紫色和黑色? [打印本页]

作者: tk4215342    时间: 2013-5-31 12:59
标题: 请问为什么游戏中的字没有紫色和黑色?
在游戏中对话中的字、物品名、事件名等等,为什么只有白蓝红绿黄青粉灰这几种颜色,紫色和黑色呢?
作者: wingzeroplus    时间: 2013-5-31 16:54
自己添加一下就得了
不会的话 参考此贴的三楼http://rpg.blue/forum.php?mod=viewthread&tid=253706
作者: 美丽晨露    时间: 2013-5-31 17:38
  1. def text_color(n)
  2.     case n
  3.     when 0
  4.       return Color.new(255, 255, 255, 255)
  5.     when 1
  6.       return Color.new(128, 128, 255, 255)
  7.     when 2
  8.       return Color.new(255, 128, 128, 255)
  9.     when 3
  10.       return Color.new(128, 255, 128, 255)
  11.     when 4
  12.       return Color.new(128, 255, 255, 255)
  13.     when 5
  14.       return Color.new(255, 128, 255, 255)
  15.     when 6
  16.       return Color.new(255, 255, 128, 255)
  17.     when 7
  18.       return Color.new(192, 192, 192, 255)
  19. when 8 # 黑色
  20.       return Color.new(0, 0, 0, 255)
  21. when 9 #紫色
  22.       return Color.new(255, 0, 255, 255)
  23.     else
  24.       normal_color
  25.     end
  26.   end
复制代码
其他颜色到PS提取RPB颜色板后,自行添加




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