Initial commit based on the work of shmup-01

This commit is contained in:
Henry 2025-12-09 08:49:00 +00:00
commit da65849c27
78 changed files with 1723 additions and 0 deletions

8
enemy_bullet.gd Normal file
View file

@ -0,0 +1,8 @@
extends Area2D
func _on_visible_on_screen_notifier_2d_screen_exited():
queue_free()
func _on_area_entered(area):
if area.name == "Player":
queue_free()