お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseColorはVector4から暗黙的に変換することが出来ます。
// Convert a white color to a vector4 var aVector4 : Vector4 = Color.white;
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { public Vector4 aVector4 = Color.white; }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): public aVector4 as Vector4 = Color.white