1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-06-02 17:31:55 +08:00

feat(角色): 更新Kernyr角色行为和外观

- 修改Kernyr的攻击模式,增加3种攻击类型
- 更新角色贴图和显示名称
- 调整阳毅导弹的尺寸和动画效果
- 修复Diamond子弹追踪时的空引用问题
- 调整测试波次配置
This commit is contained in:
2026-03-26 22:39:12 +08:00
parent 88a0a18d7e
commit 73b3f9d569
5 changed files with 55 additions and 38 deletions
+3 -3
View File
@@ -4,6 +4,6 @@ class_name Diamond
const traceTime = 1500
func ai():
PresetBulletAI.forward(self, rotation)
if timeLived() < traceTime:
PresetBulletAI.trace(self, launcher.currentFocusedBoss.getTrackingAnchor(), 0.05)
PresetBulletAI.forward(self , rotation)
if timeLived() < traceTime && is_instance_valid(launcher.currentFocusedBoss):
PresetBulletAI.trace(self , launcher.currentFocusedBoss.getTrackingAnchor(), 0.05)