mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-05-28 23:11:54 +08:00
6a4a6811ba
增加扫帚炮的移动速度并调整相机震动强度 修改回旋镖的曲线参数以优化运动轨迹
11 lines
189 B
GDScript
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)
|