I'm currently working on a javafx project and I keep running into the problem with blurry nodes when they are added to a Stackpane.
I have tried using setSnapToPixel(true)
on the Stackpane but I still end up with a blurry result.
Stackpane pane = new Stackpane(new NodeConsole(15)); //I get a blurry result
primaryStage.setScene(new Scene(pane));
primaryStage.show();
When I use a Group I get this: Clear Image
When I use a Stackpane I get this: Blurry Image