played
Event that is raised when a PlayableDirector component has begun playing.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Event
- Namespace: UnityEngine.Playables
- Assembly: UnityEngine.DirectorModule
public event Action<PlayableDirector> played
Remarks
Add an event handler, to this event, to receive a notification when a PlayableDirector begins playing. The handler also receives the PlayableDirector that is playing.
When using PlayableBehaviour, this event is raised after PlayableBehaviour.OnPlayableCreate and before PlayableBehaviour.OnGraphStart and PlayableBehaviour.OnBehaviourPlay.
This event will not be raised if the PlayableDirector is automatically played with PlayableDirector.playOnAwake.
using UnityEngine;using UnityEngine.Playables;public class PlayableDirectorCallbackExample : MonoBehaviour{ public PlayableDirector director; void OnEnable() { director.played += OnPlayableDirectorPlayed; } void OnPlayableDirectorPlayed(PlayableDirector aDirector) { if (director == aDirector) Debug.Log("PlayableDirector named " + aDirector.name + " is now playing."); } void OnDisable() { director.played -= OnPlayableDirectorPlayed; }}
Additional Resources: PlayableDirector.paused, PlayableDirector.stopped.