Color32.operator Color32 运算符Color32


static implicit function Color32 (c : Color) : Color32

Description描述

Color32 can be implicitly converted to and from Color.

Color32可以从Color隐式转换。

  • C#

  • JavaScript

using UnityEngine;using System.Collections;public class example : MonoBehaviour {public Color32 color = new Color(0.5F, 1, 0.5F, 1);}
// Convert a Color to a Color32//转换一个Color到Color32var color : Color32 = Color(0.5,1,0.5,1);


,