views:

292

answers:

2

I have a series of movieclips containing both bitmaps and text. After applying some 3d transformations and moving in 3d space, my text and bitmaps are slightly blurred. This is AFTER I reset all the 3d coordinates (ie z=0, rotationX=0, rotationY=0) Has anyone else encountered this? Is there a solution to get my crisp text and bitmaps back?

A: 

Looking up another post on 3d issues and came across the solution. You need to remove all 3d transformations by applying a new transfrom.matrix

var tempMatrix:Matrix = new Matrix(); this.transform.matrix = tempMatrix;

eco_bach
The blurring will have been caused by cumulative rounding errors in the matrix maths. I've noticed a similar effect in Silverlight too.
ChrisF
A: 

You need to make sure you set the matrix3D property to null on any objects that you've applied 3D transformation to.

heavilyinvolved