Class TimelineClipExtensions
Extension methods for TimelineClip
Namespace: UnityEngine.Timeline
Syntax
public static class TimelineClipExtensions : object
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 |
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 |
---|---|
Boolean | Returns true if the clip was successfully moved to the destination track, false otherwise. Also returns false if either argument is null |