Keyframe.inTangent 内切线

var inTangent : float

Description描述

Describes the tangent when approaching this point from the previous point in the curve.

在曲线上从上一个点接近这个点时描述切线。也就是说,从前一点到这一点的曲线上的切线。

参见:outTangent.

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public AnimationCurve anim = new AnimationCurve();
	void Start() {
		Keyframe[] ks = new Keyframe[3];
		ks[0] = new Keyframe(0, 0);
		ks[0].inTangent = 0;
		ks[1] = new Keyframe(4, 0);
		ks[1].inTangent = 45;
		ks[2] = new Keyframe(8, 0);
		ks[2].inTangent = 90;
		anim = new AnimationCurve(ks);
	}
	void Update() {
		transform.position = new Vector3(Time.time, anim.Evaluate(Time.time), 0);
	}
}
// Make an object follow a line among the X axis
//创建一个物体跟随一条线沿x轴
// Notice how the tangents modify the behaviour of the animation
//请注意切线怎样修改动画行为

var anim : AnimationCurve = new AnimationCurve();

function Start() {
	var ks : Keyframe[] = new Keyframe[3];
	ks[0] = Keyframe(0, 0);
	ks[0].inTangent = 0;
	ks[1] = Keyframe(4, 0);
	ks[1].inTangent = 45;
	ks[2] = Keyframe(8, 0);
	ks[2].inTangent = 90;
	anim = AnimationCurve(ks);
}

function Update() {
	transform.position = Vector3(Time.time,anim.Evaluate(Time.time),0);
}
最后修改:2011年2月24日 Thursday 15:17

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。