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
def text_color(n)
case n
when 0
return Color.new(255, 255, 255, 255)
when 1
return Color.new(128, 128, 255, 255)
when 2
return Color.new(255, 128, 128, 255)
when 3
return Color.new(128, 255, 128, 255)
when 4
return Color.new(128, 255, 255, 255)
when 5
return Color.new(255, 128, 255, 255)
when 6
return Color.new(255, 255, 128, 255)
when 7
return Color.new(192, 192, 192, 255)
when 8 # 黑色
return Color.new(0, 0, 0, 255)
when 9 #紫色
return Color.new(255, 0, 255, 255)
else
normal_color
end
end
复制代码
其他颜色到PS提取RPB颜色板后,自行添加
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1