Version: 2021.2
언어: 한국어
public Color color ;

설명

The main color of the Material.

By default, Unity considers a color with the property name name "_Color" to be the main color. Use the [MainColor] ShaderLab Properties attribute to make Unity consider a color with a different property name to be the main color.

This is the same as calling GetColor or SetColor with the property name of the main color as a parameter.

See Also: SetColor, GetColor, ShaderLab: Properties, ShaderPropertyFlags.MainColor.

using UnityEngine;

public class Example : MonoBehaviour { // Fade the color from red to green // back and forth over the defined duration

Color colorStart = Color.red; Color colorEnd = Color.green; float duration = 1.0f; Renderer rend;

void Start() { rend = GetComponent<Renderer> (); }

void Update() { float lerp = Mathf.PingPong(Time.time, duration) / duration; rend.material.color = Color.Lerp(colorStart, colorEnd, lerp); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961