Cubemap.Cubemap

static function Cubemap (size : int, format : TextureFormat, mipmap : boolean) : Cubemap

Description

Create a new empty cubemap texture.

The texture will be size on each side and with or without mipmaps.

Usually you will want to set the colors of the texture after creating it, using SetPixel and Apply functions.

JavaScript
    function Start () {
// Create a new texture and assign it to the renderer's material
var texture : Cubemap = new Cubemap (128, TextureFormat.ARGB32, false);
renderer.material.mainTexture = texture;
}

See Also: SetPixel, Apply functions.