赞 | 2 |
VIP | 109 |
好人卡 | 208 |
积分 | 4 |
经验 | 22037 |
最后登录 | 2024-11-9 |
在线时间 | 1198 小时 |
Lv2.观梦者 虚構歪曲
- 梦石
- 0
- 星屑
- 359
- 在线时间
- 1198 小时
- 注册时间
- 2010-12-18
- 帖子
- 3928
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 忧雪の伤 于 2011-5-8 13:10 编辑
- #______________________________________________________________________________
- # * 此脚本归66RPG - Idiot Script Association(ISA)所有,谢绝任何形式转载。
- #______________________________________________________________________________
- #==============================================================================
- # ■ 描绘模糊文字 - Blur Draw Text
- #------------------------------------------------------------------------------
- # 遵守协议:66RPG - Idiot Script Association(ISA)
- # 当前版本:1.0.0.4
- #------------------------------------------------------------------------------
- # 更新日记:忧雪の伤(2011.5.6)
- # - 优化处理
- #==============================================================================
- #--------------------------------------------------------------------------
- # ● 资料记录
- #--------------------------------------------------------------------------
- module ISA
- Use["描绘模糊文字"] = [true, "1.0.0.4"]
- end
- #==============================================================================
- # ■ Bitmap
- #------------------------------------------------------------------------------
- # 位图的类。所谓位图即表示图像其本身。
- #==============================================================================
- class Bitmap
- #--------------------------------------------------------------------------
- # ● 描绘模糊文字
- #--------------------------------------------------------------------------
- def blur_draw_text(x, y, width, height, str, align = 0, edge_color = [0, 0, 0], edge_size = 1, blur_size = 2)
- original_color = [font.color.red, font.color.green, font.color.blue, font.color.alpha]
- font.color.set(edge_color[0], edge_color[1], edge_color[2], edge_color[3].nil? ? 255 : edge_color[3])
- for x_plus in -edge_size..edge_size; for y_plus in -edge_size..edge_size
- next if x_plus.zero? and y_plus.zero?
- draw_text(x + x_plus, y + y_plus, width, height, str, align)
- end; end
- blur(blur_size, Rect.new(x, y, width + font.size, height + font.size)) unless blur_size.nil? or blur_size.zero?
- font.color.set(original_color[0], original_color[1], original_color[2], original_color[3])
- draw_text(x, y, width, height, str, align)
- end
- end
复制代码
更新截图:
截图二号:
|
评分
-
查看全部评分
|