赞 | 287 |
VIP | 11 |
好人卡 | 74 |
积分 | 226 |
经验 | 281171 |
最后登录 | 2024-10-28 |
在线时间 | 9407 小时 |
Lv5.捕梦者 (暗夜天使) 只有笨蛋才会看到
- 梦石
- 1
- 星屑
- 21589
- 在线时间
- 9407 小时
- 注册时间
- 2012-6-19
- 帖子
- 7117
|
本帖最后由 喵呜喵5 于 2014-10-5 00:38 编辑
没怎么测试,自己检查一下有没有BUG(扔到原来的脚本后面)- class Game_StandPic
- alias m5_20141005_update update
- def update
- m5_20141005_update
- return if @pic_sprite == nil
- return if @mouth_move_duration > 0
- return if @duration >= 1
- return if @tone_duration >= 1
-
- time1 = 30 # 第一次眨眼的开始时间
- time2 = 10 # 闭上眼睛的时间
- time3 = 120 # 睁开眼睛的时间
-
- @m5_eye_move_duration ||= time1
- @m5_eye_move_type ||= 0
- if @m5_eye_move_duration > 0
- @m5_eye_move_duration -= 1
- else
- case @m5_eye_move_type
- when 0
- @pic_sprite.bitmap = Cache.picture("#{@name}_#{@face_index}_ZY")
- @m5_eye_move_duration = time2
- @m5_eye_move_type = 1
- when 1
- @pic_sprite.bitmap = bitmap[@face_index][0]
- @m5_eye_move_duration = time3
- @m5_eye_move_type = 0
- end
- end
- end
- end
复制代码 |
|