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

  • xyz replied to this.

    this doesnt solve the issue as i am trying to loop through the array while using get_cell_alternative_tile on each coordinate in it

    extends TileMapLayer
    
    var placedmachine : Array = get_used_cells()
    
    func _ready() -> void:
    	for x in placedmachine:
    		var alternative := get_cell_alternative_tile(x)
    		print("alternative: %s" % alternative)

    In my case it prints:

    alternative: 0
    alternative: 0
    alternative: 0
    alternative: 0
    alternative: 1
    alternative: 1
    alternative: 1
    alternative: 1
    alternative: 1

    xyz It does solve the problem though.