1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 15:01:53 +08:00
Files
Dog-Lynx-And-HCN/scripts/Contents/Bullets/BroomGun.gd
T
fallingshrimp 6a4a6811ba feat(子弹): 调整扫帚炮和回旋镖参数
增加扫帚炮的移动速度并调整相机震动强度
修改回旋镖的曲线参数以优化运动轨迹
2026-05-01 12:54:49 +08:00

11 lines
189 B
GDScript

extends BulletBase
class_name BroomGun
@export var canTrace: bool = true
func shake():
CameraManager.shake(2000, 300)
func ai():
if canTrace:
look_at(launcher.currentFocusedPosition)