赞 | 11 |
VIP | 94 |
好人卡 | 57 |
积分 | 39 |
经验 | 47770 |
最后登录 | 2024-11-12 |
在线时间 | 1582 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 3852
- 在线时间
- 1582 小时
- 注册时间
- 2006-5-5
- 帖子
- 2743
|
本帖最后由 步兵中尉 于 2012-3-19 21:56 编辑
都是这样定义的啊?看看我的定义吧。记住一点,编辑时的数字是when后面的数字加1- def text_color(n)
- case n
- when 0 #白色
- return Color.new(255, 255, 255, 255)
- when 1 #浅蓝色
- return Color.new(0, 191, 239, 255)
- when 2 #深蓝色
- return Color.new(0, 0, 255, 255)
- when 3 #RGB绿色
- return Color.new(20, 255, 20, 255)
- when 4 #正红色
- return Color.new(255, 0, 0, 255)
- when 5 #淡紫色
- return Color.new(255, 128, 255, 255)
- when 6 #黄色
- return Color.new(255, 255, 0, 255)
- when 7 #黑色
- return Color.new(0, 0, 0, 255)
- else
- normal_color
- end
- end
复制代码 |
评分
-
查看全部评分
|