1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-06-12 22:57:13 +08:00

feat(战斗系统): 实现弹反效果并调整相关参数

- 新增Parry效果控制器及关联资源
- 为EffectController添加beforeShot钩子方法
- 调整Parrier子弹的碰撞形状和动画时长
- 实现弹反成功时的击退效果和视觉反馈
- 修改默认波次配置用于测试
This commit is contained in:
2026-03-28 11:55:16 +08:00
parent 826df79c45
commit d9a8af529a
9 changed files with 27 additions and 9 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ static var WAVE_JUSTJOKE = [
Wave.create("Kernyr", 0, 0, true, 0, INF, 1),
]
static var WAVE_EMPTY = []
static var waveConfig = [WAVE_JUSTJOKE, 10]
static var waveConfig = [WAVE_NORMAL, 1]
static var current: int = startWith(1) if WorldManager.isRelease() else startWith(waveConfig[1])
static var data = WAVE_NORMAL if WorldManager.isRelease() else waveConfig[0]