set [url]www.texture[/url] use MipMap?

hi everybody:

i use www.texture import a texture below:

(
var url = “http://images.earthcam.com/ec_metros/ourcams/fridays.jpg”;
function Start () {
// Start a download of the given URL
var www : WWW = new WWW (url);

// Wait for download to complete
yield www;

// assign texture
renderer.material.mainTexture = www.texture;
}
)

but how to set a mipmap for this texture?

thanks!!

139567--5103--$1_169.jpg

Use LoadImageIntoTexture - first create a small texture (e.g. 4x4) with mipmaps, then load into that texture. Since the texture will have mipmaps, the loading code will create mipmaps as well.

thanks Aras!
it`s great answser!!