I'm exporting a project in JSON format and importing it to the Widget runtime. I'm trying to make the end result look sharp on retina screens like the macbook pro. The way to do this with regular images is to use images that are twice as big as the space they need to take up, and scale them down with CSS. The following things I've tried all end up looking either blurry or pixelated:
- exporting from spine at scale:1 and setting scale: .5 in the runtime config
- exporting at scale:1 and setting "fitToCanvas: true" in the runtime config
The only thing that does seem to work is exporting at "scale:1", using "scale:1" in the runtime config, and then scaling the canvas object down using CSS "transform: scale(.5)". This works but is not ideal because then the elements take up twice the space in the DOM than what is visible.
Is there a recommended method for getting crisp retina exports with the Widget runtime?