Class TimelineClipExtensions
Extension methods for TimelineClip
Inherited Members
Namespace: UnityEngine.Timeline
Assembly: Unity.Timeline.dll
Syntax
public static class TimelineClipExtensions
Methods
MoveToTrack(TimelineClip, TrackAsset)
Tries to move a TimelineClip to a different track. Validates that the destination track can accept the clip before performing the move. Fails if the clip's PlayableAsset is null, the current and destination tracks are the same or the destination track cannot accept the clip.
Declaration
public static void MoveToTrack(this TimelineClip clip, TrackAsset destinationTrack)
Parameters
Type | Name | Description |
---|---|---|
TimelineClip | clip | Clip that is being moved |
TrackAsset | destinationTrack | Desired destination track |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown if |
InvalidOperationException | Thrown if the PlayableAsset in the TimelineClip is null |
InvalidOperationException | Thrown if the current parent track and destination track are the same |
InvalidOperationException | Thrown if the destination track cannot hold tracks of the given type |
TryMoveToTrack(TimelineClip, TrackAsset)
Tries to move a TimelineClip to a different track. Validates that the destination track can accept the clip before performing the move. Fails if the clip's PlayableAsset is null, the current and destination tracks are the same or the destination track cannot accept the clip.
Declaration
public static bool TryMoveToTrack(this TimelineClip clip, TrackAsset destinationTrack)
Parameters
Type | Name | Description |
---|---|---|
TimelineClip | clip | Clip that is being moved |
TrackAsset | destinationTrack | Desired destination track |
Returns
Type | Description |
---|---|
bool | Returns true if the clip was successfully moved to the destination track, false otherwise. Also returns false if either argument is null |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown if |