JavaFX is not blurry anymore in a retina macbook, according to this: How to make JavaFX Applications non-blurry on Retina Display
But if you use an image (like, put an image in a button), the image will be blurry. This is natural because obviously the image is being scaled up.
How can I support retina images in a JavaFX application? That is, display non-blurry images in my buttons?
I imagine one would need two versions of the same image. One that is bigger than the other to be used if the application is run in a retina macbook, and the other to be used if the application is run in a standard display. But how?