Initial commit based on the work of shmup-01
This commit is contained in:
commit
da65849c27
78 changed files with 1723 additions and 0 deletions
8
enemy_bullet.gd
Normal file
8
enemy_bullet.gd
Normal 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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue