Project1
标题:
(战斗系统)怎么让我方动画和对象方动画同时播放?
[打印本页]
作者:
古尔格
时间:
2009-12-19 17:18
标题:
(战斗系统)怎么让我方动画和对象方动画同时播放?
做游戏要用,,,,拜托,,,,,
作者:
li807609447
时间:
2009-12-20 09:06
在Scene_Battle4中 第410行:
你会看到下面这一段
# 对像方动画
for target in @target_battlers
target.animation_id = @animation2_id
target.animation_hit = (target.damage != "Miss")
end
把他剪切到 392行中
#--------------------------------------------------------------------------
# ● 刷新画面 (主回合步骤 3 : 行动方动画)
#--------------------------------------------------------------------------
def update_phase4_step3
# 行动方动画 (ID 为 0 的情况下是白色闪烁)
if @animation1_id == 0
@active_battler.white_flash = true
else
@active_battler.animation_id = @animation1_id
@active_battler.animation_hit = true
end
##粘贴上面一段
# 对像方动画
for target in @target_battlers
target.animation_id = @animation2_id
target.animation_hit = (target.damage != "Miss")
end
########################
# 移至步骤 4
@phase4_step = 5
end
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1