Class BasicPlayableBehaviour
This class is deprecated. It is recommended to use Playable Asset and Playable Behaviour derived classes instead.
Inherited Members
Namespace: UnityEngine .Timeline
Assembly: solution.dll
Syntax
[Serializable]
[Obsolete("For best performance use PlayableAsset and PlayableBehaviour.")]
public class BasicPlayableBehaviour : ScriptableObject, IPlayableAsset, IPlayableBehaviour
Properties
Name | Description |
---|---|
duration | The playback duration in seconds of the instantiated Playable. |
outputs | A description of the outputs of the instantiated Playable. |
Methods
Name | Description |
---|---|
Create |
Implement this method to have your asset inject playables into the given graph. |
On |
This function is called when the Playable play state is changed to Playables.PlayState.Paused. |
On |
This function is called when the Playable play state is changed to Playables.PlayState.Playing. |
On |
This function is called when the PlayableGraph that owns this PlayableBehaviour starts. |
On |
This function is called when the PlayableGraph that owns this PlayableBehaviour stops. |
On |
This function is called when the Playable that owns the PlayableBehaviour is created. |
On |
This function is called when the Playable that owns the PlayableBehaviour is destroyed. |
Prepare |
This function is called during the PrepareFrame phase of the PlayableGraph. |
Process |
This function is called during the ProcessFrame phase of the PlayableGraph. |