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

feat: 添加SCBlock和Bengbeng子弹类型及相关资源

feat(角色): 为Kernyr和CyberCat添加新攻击类型

refactor(角色): 更新Kernyr角色贴图和显示名称

feat(关卡): 调整测试关卡配置和敌人波次

style: 更新子弹资源文件及导入配置
This commit is contained in:
2026-04-04 21:07:16 +08:00
parent c413744dbf
commit b343708b3b
35 changed files with 716 additions and 18 deletions
+12
View File
@@ -0,0 +1,12 @@
extends BulletBase
class_name BengbengBullet
func spawn():
hitbox.disabled = true
func ai():
texture.global_rotation = 0
PresetBulletAI.forward(self , position.angle_to_point(launcher.currentFocusedBoss.position))
if is_instance_valid(launcher.currentFocusedBoss):
if launcher.currentFocusedBoss.position.distance_to(position) < 125 && hitbox.disabled:
EffectController.create(ComponentManager.getEffect("NuclearExplosion"), position).shot()
hitbox.disabled = false