1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 23:11:54 +08:00
Files
Dog-Lynx-And-HCN/scripts/Contents/Bullets/WhiteSoul.gd
T
fallingshrimp 4a33c420bb fix(Bullets): 调整WhiteSoul子弹速度增长率和添加生命周期
将速度增长率从1.1降低至1.05以平衡游戏难度
为WhiteSoul子弹添加lifeTime属性防止内存泄漏
2025-09-26 22:15:57 +08:00

9 lines
130 B
GDScript

extends BulletBase
func register():
speed = 1
func ai():
speed *= 1.05
damage = speed
PresetBulletAI.forward(self, rotation)