言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Color.Lerp

Suggest a change

Success!

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.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function Lerp(a: Color, b: Color, t: float): Color;
public static Color Lerp(Color a, Color b, float t);
public static def Lerp(a as Color, b as Color, t as float) as Color

Description

A 色からB 色への変更というような色の変換を行います。

t は0から1の間で固定されます。 t が0ときは a/ 、 t が1のときは b を返します。

// Converts a white color to a black one trough time.
var lerpedColor : Color = Color.white;
function Update() {
	lerpedColor = Color.Lerp(Color.white, Color.black, Time.time);
}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public Color lerpedColor = Color.white;
    void Update() {
        lerpedColor = Color.Lerp(Color.white, Color.black, Time.time);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public lerpedColor as Color = Color.white

	def Update() as void:
		lerpedColor = Color.Lerp(Color.white, Color.black, Time.time)