Color.white 白色


static var white : Color

Description描述

Solid white. RGBA is (1, 1, 1, 1).

纯白色。 RGBA 是 (1, 1, 1, 1) 。

  • C#

  • JavaScript

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;


,