Color.white 白色
static var white : Color
Description描述
Solid white. RGBA is (1, 1, 1, 1).
纯白色。 RGBA 是 (1, 1, 1, 1) 。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
transform.renderer.material.color = Color.white;
}
}
// Assign a white color to this transform's material
// 赋一个白色给这个变换的材质。
transform.renderer.material.color = Color.white;
最后修改:2010年12月16日 Thursday 21:33