mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-05-27 22:41:56 +08:00
5cef96cd34
重构Parrier.gd中的格挡逻辑,将重复代码提取为parryEffect和penerateEffect方法 调整FoxZhua子弹的追踪位置和场景配置 修改waveDebugConfig使用测试BOSS而非测试小怪
9 lines
192 B
GDScript
9 lines
192 B
GDScript
extends BulletBase
|
|
class_name FoxZhua
|
|
|
|
@export var canTrace: bool = true
|
|
|
|
func ai():
|
|
if canTrace:
|
|
PresetBulletAI.lerpPosition(self , launcher.currentFocusedBoss.getTrackingAnchor(), speed)
|