My goal is a smooth animation when the repositionning of nodes occur inside a container (by overriding the layoutChildren() method).
Java:
public class AnimatedTilePane extends TilePane {
@Override
protected void layoutChildren() {
super.layoutChildren();
for (Node child : getChildren()) {
}
}
}