mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-05-28 06:51:54 +08:00
1fa8263667
移除所有子弹类中的register方法,将属性初始化移至其他位置 在BulletBase的trySplit和tryRefract方法中添加子子弹标记
12 lines
289 B
GDScript
12 lines
289 B
GDScript
extends BulletBase
|
|
class_name ChickSprint
|
|
|
|
func ai():
|
|
baseDamage = launcher.velocity.length() / 500.0
|
|
PresetBulletAI.lockLauncher(self, launcher, true)
|
|
if !launcher.sprinting:
|
|
tryDestroy()
|
|
func destroy(beacuseMap: bool):
|
|
if beacuseMap:
|
|
launcher.bulletHit(self, MathTool.rate(0.5))
|