GDScript Usuń usunięte obiekty z tablicy

for object in array:
	if ! is_instance_valid(object):
		array.erase(object)
ProMikeSundays