I get the following error :
Exception in thread "Thread-5" java.lang.IllegalStateException: Not on FX application thread; currentThread = Thread-5"
When this statement is executed :
root.getChildren().add(carros);
The relevant code snippet is :
public void createCar(String origem, String destino){
Group carros = new Group();
carro1 = new Rectangle(30,15,Color.DARKMAGENTA);
carros.getChildren().add(carro1);
root.getChildren().add(carros);
animate(carros, (origem+"->"+destino) );
}