赞 | 0 |
VIP | 177 |
好人卡 | 10 |
积分 | 1 |
经验 | 12547 |
最后登录 | 2017-8-1 |
在线时间 | 193 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 193 小时
- 注册时间
- 2013-3-24
- 帖子
- 448
|
if rectime==nil
rectime=0 #事先歸零,以避免nil的問題
end
放招方面:
if rectime < Graphics.frame_count
放招
rectime = Graphics.frame_count + 冷卻帧數
end
圖標方面:
op=255 #透明度
re=24 # 這是你圖標的高度
if rectime > Graphics.frame_count
op = 255 - ( rectime - Graphics.frame_count ) * 255 / 冷卻帧數 # * 255 建議改小一點比較好
re = 24 - ( rectime - Graphics.frame_count ) * 24 / 冷卻帧數 # 24是你圖標的高度
end
bitmap = RPG::Cache.icon( skill.icon_name )
self.contents.blt(4, 24, bitmap, Rect.new(0, 0, 24, re), op) |
|