1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-31 08:21:54 +08:00

feat(武器系统): 重构LGBT武器和彩虹旗召唤物

调整LGBT武器属性计算公式,增加角度和数量参数
为彩虹旗召唤物添加多子弹发射和延迟发射功能
修改子弹追踪逻辑和穿透属性
更新武器描述和能量消耗
This commit is contained in:
2025-11-07 22:31:51 +08:00
parent 287f29695d
commit 675219e0f8
10 changed files with 79 additions and 32 deletions
+2 -2
View File
@@ -395,9 +395,9 @@ func getTrackingAnchor() -> Vector2:
return hurtbox.get_node("hitbox").global_position
# 关于分组
func isPlayer():
func isPlayer() -> bool:
return is_in_group("players")
func isSummon():
func isSummon() -> bool:
return self is SummonBase
# 抽象方法,实际上是一些钩子,不需要全部实现