Method Invoke
Invoke<T>(ActionContext)
Execute a given action with a context parameter.
선언
public static bool Invoke<T>(this ActionContext context) where T : TimelineAction
파라미터
타입 | 이름 | 설명 |
---|---|---|
ActionContext | context | Context for the action. |
반환
타입 | 설명 |
---|---|
bool | True if the action has been executed, false otherwise. |
타입 파라미터
이름 | 설명 |
---|---|
T | Action type to execute. |
Invoke<T>(IEnumerable<TrackAsset>)
Execute a given action with tracks
선언
public static bool Invoke<T>(this IEnumerable<TrackAsset> tracks) where T : TrackAction
파라미터
타입 | 이름 | 설명 |
---|---|---|
IEnumerable<TrackAsset> | tracks | Tracks that the action will act on. |
반환
타입 | 설명 |
---|---|
bool | True if the action has been executed, false otherwise. |
타입 파라미터
이름 | 설명 |
---|---|
T | Action type to execute. |
Invoke<T>(IEnumerable<TimelineClip>)
Execute a given action with clips
선언
public static bool Invoke<T>(this IEnumerable<TimelineClip> clips) where T : ClipAction
파라미터
타입 | 이름 | 설명 |
---|---|---|
IEnumerable<TimelineClip> | clips | Clips that the action will act on. |
반환
타입 | 설명 |
---|---|
bool | True if the action has been executed, false otherwise. |
타입 파라미터
이름 | 설명 |
---|---|
T | Action type to execute. |
Invoke<T>(IEnumerable<IMarker>)
Execute a given action with markers
선언
public static bool Invoke<T>(this IEnumerable<IMarker> markers) where T : MarkerAction
파라미터
타입 | 이름 | 설명 |
---|---|---|
IEnumerable<IMarker> | markers | Markers that the action will act on. |
반환
타입 | 설명 |
---|---|
bool | True if the action has been executed, false otherwise. |
타입 파라미터
이름 | 설명 |
---|---|
T | Action type to execute. |