add falling block

This commit is contained in:
pennyrigate 2023-01-13 14:52:47 -05:00
parent d6547b61d4
commit 54f0880864
20 changed files with 153 additions and 26 deletions

View file

@ -0,0 +1,6 @@
extends Area2D
func _on_Area2D_area_entered(area):
#Kill player
if area.is_in_group("player"):
area.get_parent().die()