Fixed many Bugy and added Labels for Time and Score

This commit is contained in:
Exobyt 2024-08-20 00:34:24 +02:00
parent 632eeddc64
commit ee5e17c3e0
14 changed files with 430 additions and 179 deletions

View file

@ -8,3 +8,16 @@ extends Area2D
func getRow():
return get_overlapping_areas()
func isCompleted():
var amount = 0
for i in get_overlapping_areas():
if i.get_scale() == Vector2(2,2):
amount += 2
else:
amount += 1
if amount >= 10:
return true
else:
return false