i think the asteroids, bullet hell insta win/lose +bullet hell out of bounds bug are fixed

This commit is contained in:
Tabby 2025-05-18 10:32:25 +10:00
parent ebf3b2ee4c
commit 8de322825c
6 changed files with 45 additions and 6 deletions

View file

@ -37,7 +37,7 @@ func spawn_new_bullet():
follow_line.progress_ratio = randf()
newBullet.global_position = follow_line.global_position
#newBullet.heading = -newBullet.global_position.normalized()
get_parent().add_child(newBullet)
add_child(newBullet)
func _on_hitbox_area_entered(area: Area2D) -> void: