This commit is contained in:
Nikolai Fesenko
2025-08-29 00:05:43 +02:00
parent 4e810f8fc0
commit 9c2d5d34e5
7 changed files with 64 additions and 13 deletions

View File

@@ -4,11 +4,13 @@ signal destination_reached
var is_live: bool = false
var is_loaded: bool = false
var is_target_reached: bool = true
var target_position: Vector3
func _ready() -> void:
GameManager.add_bullet(self)
target_position = Vector3.ZERO
destination_reached.connect(on_target_reached)