标签: java javafx-8
有没有办法确定tilePane中瓷砖的位置(x和y)?
答案 0 :(得分:0)
TilePane.getChildren()是一个包含所有Node的列表,拥有自己的度量和排名x和y。只需遍历List并使用他们的变量:
TilePane.getChildren()
Node
x
y
for (Node n : tile.getChildren()) { ... }