Cubemap.Cubemap 构造立方图

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

Description描述

Create a new empty cubemap texture.

创建一个空的立方图纹理。

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

该纹理将在每一面创建size大小带有或不带有mipmap的纹理。

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

通常会在创建之后设置纹理的颜色,使用SetPixel和Apply函数。

参见: SetPixelApply函数

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Start() {
		Cubemap texture = new Cubemap(128, TextureFormat.ARGB32, false);
		renderer.material.mainTexture = texture;
	}
}
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;
}
最后修改:2011年3月18日 Friday 14:23

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。