赞 | 159 |
VIP | 0 |
好人卡 | 0 |
积分 | 263 |
经验 | 0 |
最后登录 | 2024-11-16 |
在线时间 | 5355 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 26264
- 在线时间
- 5355 小时
- 注册时间
- 2016-3-8
- 帖子
- 1655
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 alexncf125 于 2020-10-12 11:02 编辑
"\i[123]\c[4]技能"
我想icon = 123, color = 4,要怎写?
- color = #####怎写?
- sprite.bitmap.font.color.set(text_color(color))
-
- bitmap = Cache.system("Iconset")
- icon = string.gsub(/[\D]/, '').to_i #####怎改?
- icon_rect = Rect.new(icon % 16 * 24, icon / 16 * 24, 24, 24)
- sprite.bitmap.blt(0, 0, bitmap, icon_rect)
-
- string = string.gsub(/\\C\[(\d+)\]/i,'')
- string = string.gsub(/\\I\[(\d+)\]/i,'')
-
- if icon > 0
- sprite.bitmap.draw_text(24, 0, rect.width, rect.height, string, alignment)
- @ms_command_slider << [sprite, offset_x, offset_y, target_x + 12, index, 0,
- sprite.bitmap.text_size(string).width > self.width]
- return
- end
复制代码 |
|