Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一张地图,我从中获取了单元格并存储在一个单元格 2d 数组中
Cells[][] cells;
我的问题是,如果我单击地图上的一个单元格,我如何获得被单击的单元格(X,Y)。
您确实从点击事件中获得了世界坐标。之后,您计算将被触摸的瓷砖。 您将触摸的 x 值除以与 y 相同的 Tilesize。之后,您将其转换为整数,并且您确实拥有被触摸的瓷砖的 x,y 值。