Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Keyframe.inTangent

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public var inTangent: float;
public float inTangent;

Descripción

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

The angle needs to be expressed in radians.

The tangent is really just the gradient of the slope, as in "change in y / change in x"

See Also: outTangent.


        
using UnityEngine;

public class KeyFrameTangentExample : MonoBehaviour { AnimationCurve animCurve = null;

void Start( ) { Keyframe[] ks = new Keyframe[3];

ks[0] = new Keyframe( 0, 0 ); ks[0].inTangent = 1.5708f; // 90 degrees up

ks[1] = new Keyframe( 4, 0 ); ks[1].inTangent = 0; // straight

ks[2] = new Keyframe( 6, 0 ); ks[2].inTangent = -1.5708f; // 90 degrees down

animCurve = new AnimationCurve( ks ); }

void Update( ) { if( animCurve != null ) transform.position = new Vector3( Time.time, animCurve.Evaluate( Time.time ), 0 ); } }