Color.magenta 紫红色
static var magenta : Color
Description描述
Magenta. RGBA is (1, 0, 1, 1).
紫红色。 RGBA 是 (1, 0, 1, 1)。
C#
JavaScript
using UnityEngine;using System.Collections;public class example : MonoBehaviour {public void Awake() {transform.renderer.material.color = Color.magenta;}}
// Assign a magenta color to this transform's material// 赋一个紫红色给这个变换的材质。transform.renderer.material.color = Color.magenta;