score board

This commit is contained in:
2025-09-10 12:13:36 +02:00
parent 09c0dfe072
commit 95297aea0c
11 changed files with 233 additions and 11 deletions

View File

@@ -68,7 +68,7 @@ func spawn():
var new_global_position = Vector2(distance,0).rotated(randf_range(0.0, 360))
new.global_position = new_global_position
new.direction = (player.global_position - new_global_position).normalized()
new.SPEED = (randf() * 50 + 50) * ( 1 + (global_time / 200))
new.SPEED = (randf() * 50 + 50) * ( 1 + (global_time / 100))
add_child(new)