var placedmachine : Array = get_used_cells()
for x in placedmachine:
get_cell_alternative_tile(Vector2i(placedmachine[x]))
this code is attached to a tilemap where it grabs the coordinates of placed cells and puts them into an array, i am trying to get the alternative tile of the placed tile so that i can know which way the player has placed them as to my knowledge alternative tiles are used when rotating tiles. this causes the error "Invalid access to property or key '(-3, 0)' on a base object of type 'Array[Vector2i]'" to occur and im not sure why
i was expecting it to give me back the alternitive tile state of the tile at placedmachine[x] but it instead errors and becomes unresponsive