diff --git a/scripts/Contents/Bullets/Parrier.gd b/scripts/Contents/Bullets/Parrier.gd index 1cf132d..dc7f90d 100644 --- a/scripts/Contents/Bullets/Parrier.gd +++ b/scripts/Contents/Bullets/Parrier.gd @@ -29,6 +29,7 @@ func hitBullet(bullet: BulletBase): # 当前子弹与其他子弹相撞 eff.rotation = position.angle_to_point(bullet.position) eff.shot() CameraManager.shake(200, 250) + launcher.position -= (bullet.position - position).normalized() * 50 # 摧毁其他子弹 bullet.tryDestroy() var cycler = launcher.getOrCreateCycleTimer("parry", 2000, 100) diff --git a/scripts/Contents/Wave.gd b/scripts/Contents/Wave.gd index 049645e..9b79214 100644 --- a/scripts/Contents/Wave.gd +++ b/scripts/Contents/Wave.gd @@ -50,7 +50,7 @@ static var WAVE_JUSTJOKE = [ Wave.create("Kernyr", 0, 0, true, 0, INF, 1), ] static var WAVE_EMPTY = [] -static var data = WAVE_NORMAL if WorldManager.isRelease() else WAVE_JUSTJOKE +static var data = WAVE_NORMAL if WorldManager.isRelease() else WAVE_NORMAL static func create( entity_: String,