赞 | 0 |
VIP | 8 |
好人卡 | 3 |
积分 | 1 |
经验 | 32953 |
最后登录 | 2021-11-8 |
在线时间 | 578 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 85
- 在线时间
- 578 小时
- 注册时间
- 2010-6-29
- 帖子
- 365
|
3楼
楼主 |
发表于 2011-4-29 20:30:24
|
只看该作者
本帖最后由 凯蒂洛斯 于 2011-4-29 20:55 编辑
回复 Wind2010 的帖子
谢谢了,正在使用画图的自定义颜色调试中……完成后我将贴出截图
- 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, 55, 55, 255)#红色return Color.new(255, 128, 128, 255)
- when 3
- return Color.new(0, 255, 64, 255)#绿色return Color.new(128, 255, 128, 255)
- when 4
- return Color.new(128, 255, 255, 255)#蓝色未修改
- when 5
- return Color.new(255, 196, 255, 255)#粉色return Color.new(255, 128, 255, 255)
- when 6
- return Color.new(255, 220, 0, 255)#黄色return Color.new(255, 255, 128, 255)
- when 7
- return Color.new(192, 192, 192, 255)#灰色未修改
- else
- normal_color
- end
- end
复制代码 |
|