I have a large tilemap output on my game with a variety of tiles and I'm wanting to get the tile ID at the Mouse's location on the map.
When my mouse clicks, I'm have a textbox set the text to "map.TileAt(map.PositionToTileX(mouse.X), map.PositionToTileY(mouse.Y))"
But the textbox just outputs constantly "526870911"
I tried simplifying my output to "map.TileAt(1,5)" and various locations but I still get the exact same output "526870911"
Any ideas?