I kept a bitmap inside a movieClip, bitmap has been set to be smoothing. but when I changed the scale of this movieclip, it still got pixelated. Do we have the way to avoid. it is really painful.
Asked
Active
Viewed 1,127 times
0
-
do you need it in a MovieClip? – Neil Jun 16 '12 at 18:20
-
Just a side note: if you upscale (make it bigger) it will always be pixelated. – strah Jun 16 '12 at 21:13
1 Answers
1
When you scale bitmaps, quality gets lost, always.
- Always snap x and y positions to full pixels.
stage.quality = "best"
gives you better anti-alliasing (bicubic), but it cost more CPU.- Try to find out what the maximum scale of the image could be. Then make the image at that size.
- Most people dont't see its not that smooth, just make the game runs smooth and fun. so relax about it.

Mark Knol
- 9,663
- 3
- 29
- 44