grapefrukt / grapefrukt-export

a set of actionscript tools to export animations and graphic assets made in flash authoring to other formats.
197 stars 29 forks source link

How are you keeping things smooth? #15

Closed rcurtis closed 9 years ago

rcurtis commented 9 years ago

Im integrating your animation player into a SFML based engine and all the scaling looks super pixelated during rendering. Any idea how to smooth those out?

pixels

rcurtis commented 9 years ago

Texture smoothing seems to help with some anti-aliasing, but now the drop shadow effects look weird. Not sure. pixel2

grapefrukt commented 9 years ago

The first image does indeed seem to be without interpolation, so that'll look a little bit jaggy. I'm not sure what you've enabled in the second one, but those edge artifacts are a telltale sign of issues with premultiplied alpha, which would come out much more with interpolation enabled.

Either way, this isn't really something the exporter can change, it's all on your rendering end. So, I'm going to close this issue.

rcurtis commented 9 years ago

Hey thanks for the response. I agree this has nothing to do with your exporter, but I would like to ask for a bit more advice trouble shooting this if you don't mind. What would be the appropriate avenue?

Thanks, Rob