10 lines
273 B
GDScript
10 lines
273 B
GDScript
extends Area2D
|
|
|
|
#func _physics_process(delta: float) -> void:
|
|
#if get_overlapping_areas().size() == 10:
|
|
#for i in get_overlapping_areas():
|
|
#GLOBAL.points += i.points
|
|
#i.queue_free()#get_parent().get_parent().split()
|
|
|
|
func getRow():
|
|
return get_overlapping_areas()
|