Smoothing
Hello everybody,
With away3d I import 3d models into flash builder 4.5 as follows:
package
{
import models.example;
public class model extends Sprite
{
public var model_example:example = new example;
public function model()
{
view.scene.addChild(model_example);
}
}
}
In the file 'models.example.as' a jpg is used as texture for the model:
[Embed(source="picture.jpg")]
private var Obj_000001_Bitmap_Bitmap:Class;
Picture.jpg is a picture of some text and it's not displayed very well.
I found something about smoothing on this site: http://www.allforthecode.co.uk/aftc/forum/user/modules/forum/article.php?index=4&subindex=4&aid=121
The text on my model is just as the text on the right cube in that article. I would like to have it as on the left cube but it seems that it does not work in my case.
Could anybody help me further?