mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-02 14:39:37 +01:00
7 lines
134 B
GDScript
7 lines
134 B
GDScript
extends Area2D
|
|
|
|
func _on_wall_area_entered(area):
|
|
if area.name == "Ball":
|
|
#oops, ball went out of game place, reset
|
|
area.reset()
|