赞 | 11 |
VIP | 302 |
好人卡 | 162 |
积分 | 62 |
经验 | 108302 |
最后登录 | 2024-11-2 |
在线时间 | 6592 小时 |
Lv4.逐梦者 醉啸 长风万里
- 梦石
- 0
- 星屑
- 6157
- 在线时间
- 6592 小时
- 注册时间
- 2007-12-16
- 帖子
- 4501
|
Game_Actor里- #--------------------------------------------------------------------------
- # ● 获取普通攻击动画 ID
- #--------------------------------------------------------------------------
- def atk_animation_id
- if two_swords_style
- return weapons[0].animation_id if weapons[0] != nil
- return weapons[1] == nil ? 1 : 0
- else
- return weapons[0] == nil ? 1 : weapons[0].animation_id
- end
- end
复制代码 改为- #--------------------------------------------------------------------------
- # ● 获取普通攻击动画 ID
- #--------------------------------------------------------------------------
- def atk_animation_id
- if two_swords_style
- return weapons[0].animation_id if weapons[0] != nil
- return weapons[1] == nil ? 1 : 0
- else
- if weapons[0].animation_id == 7 and $game_switches[1]==true
- return 27
- else
- return weapons[0] == nil ? 1 : weapons[0].animation_id
- end
- end
- end
复制代码 意思:当攻击动画为在数据库中7号动画+一号开关打开时此武器动画改为27号动画 |
|