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.

Playable.ProcessFrame

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 function ProcessFrame(info: Experimental.Director.FrameData, playerData: object): void;
public void ProcessFrame(Experimental.Director.FrameData info, object playerData);

Parámetros

info The FrameData for the current frame.
playerData Custom data passed down the tree, specified in DirectorPlayer.Play.

Descripción

Evaluates the Playable with a delta time.

The ProcessFrame is the stage at which your Playable should do its work. This method is called every frame when a Playable tree is playing. The ProcessFrame method has 2 parameters, the current FrameData structure which describes the current time and the time delta, and a custom data object. This custom object is the data on which the Playable should do its work, as it is passed down the tree from Playable to Playable. This custom object is passed as a parameter to the Director.Play method.


        
public class SomeData
{
	public int foobar = 0;
	public int increment = 1;
}

public class MyCustomPlayable : Playable { public override void ProcessFrame(FrameData info, object customData) { var theData = customData as SomeData; theData.foobar += theData.increment; } }

public class SwapSign : Playable { public override void ProcessFrame(FrameData info, object customData) { var theData = customData as SomeData; if (theData.foobar > 20) theData.increment = -1; if (theData.foobar <= 0) theData.increment = 1; } }

public class GraphIncrementDecrement : MonoBehaviour { private SomeData myCustomData;

void Start() { var rootPlayable = new MyCustomPlayable() var childPlayable = new SwapSign();

Playable.Connect(childPlayable, rootPlayable);

GetComponent<DirectorPlayer>().Play(rootPlayable, myCustomData); }

void Update() { Debug.Log("foobar is now:" + myCustomData.foobar); } }