mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-06-02 17:31:55 +08:00
11 lines
204 B
GDScript
11 lines
204 B
GDScript
|
|
extends BulletBase
|
||
|
|
class_name QKSwordBullet
|
||
|
|
|
||
|
|
var tracer: EntityBase
|
||
|
|
|
||
|
|
func ai():
|
||
|
|
if is_instance_valid(tracer):
|
||
|
|
look_at(tracer.position)
|
||
|
|
if timeLived() > 1000:
|
||
|
|
PresetBulletAI.forward(self , rotation)
|