Interface Class Name | Description |
TAVEditor | SDK operation entry class. |
/// Set effect/// - Parameters:/// - path: Effect asset path/// - timeRange: Time range for the effect/// - return: Effect ID- (int)addMotionEffect:(NSString *)path timeRange:(CMTimeRange)timeRange;
/// Update effect playback time/// - Parameters:/// - effectId: ID generated when creating the effect/// - timeRange: Effect display time range- (void)updateMotionEffect:(int)effectId playRange:(CMTimeRange)timeRange;
/// Remove effect/// - Parameter effectId: ID generated when creating the effect- (void)removeMotionEffect:(int)effectId;/// Remove all effects- (void)removeAllMotion;
フィードバック