PlayableTraversalMode
Traversal mode for Playable s.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Enum
- Namespace: UnityEngine.Playables
- Assembly: UnityEngine.CoreModule
public enum PlayableTraversalMode
Fields
Value | Description |
|---|---|
| Mix | Causes the Playable to prepare and process it's inputs when demanded by an output. |
| Passthrough | Causes the Playable to act as a passthrough for PrepareFrame and ProcessFrame. If the PlayableOutput being processed is connected to the n-th input port of the Playable, the Playable only propagates the n-th output port. Use this enum value in conjunction with PlayableOutput SetSourceOutputPort. |