赞 | 2 |
VIP | 335 |
好人卡 | 3 |
积分 | 1 |
经验 | 14077 |
最后登录 | 2020-1-28 |
在线时间 | 264 小时 |
Lv1.梦旅人 冰
- 梦石
- 0
- 星屑
- 142
- 在线时间
- 264 小时
- 注册时间
- 2006-11-22
- 帖子
- 1057
|
if @character.animation_id != 0
if (0..640).include?(@character.screen_x) and (0..480).include?(@character.screen_y)
animation = $data_animations[@character.animation_id]
animation(animation, true)
@character.animation_id = 0
else
@character.animation_id = 0
end
end
取代Sprite_Character的:
if @character.animation_id != 0
animation = $data_animations[@character.animation_id]
animation(animation, true)
@character.animation_id = 0
end 版主对此帖的认可:『正却解答,补上悬赏积分100分+1卡(=250分),感激你的热情解答...』,积分『+350』。 |
|