Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

Keyframe.value

マニュアルに切り替える
public float value;

説明

キーフレームでのカーブの値

2D グラフでは y の値と考える事ができます

See Also: time.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public AnimationCurve curve = AnimationCurve.Linear(0, 0, 5, 5); void Example() { Debug.Log(curve[0].value); } }