What is Incisor?
Tutorials
Key Concepts
Reddit
Stack Overflow
Deprecation Schedule

Timeline extends PlaybackController

Timelines are specialized PlaybackControllers that control animation of Constructs created in the IncisorĀ® GUI. [NON-INSTANTIABLE]

MEMBERS

influence :number

This value determines the degree to which this particular timeline controls its construct. The total influence among all of the timelines always adds up to 1. When a particular Timeline's influence is actively increased, the influence of all other Timelines is decreased passively and proportionally in order to maintain a total influence of 1. A Timeline's influence cannot be directly decreased, it must be done passively be increasing the influence of another Timeline.

Members below are inherited from the parent class.

autoplay :boolean

Boolean determining if the PlaybackController automatically starts playing when included in a newly instantiated Construct.

Inherited From:

Default Value:
  • true

readonly duration :number

The read-only length of this PlaybackController in seconds. To change the duration, adjust the 'startTime' or 'endTime' properties.

Inherited From:

inheritedTypes :object

Dictionary object listing all of the types this object is compatible with.

Inherited From:

lazyStop :boolean

Boolean flag determining if the PlaybackController will hault the next time the time reachs the endTime (or startTime if playback is a negative value). If this flag is false, the PlaybackController loops and continues playing indefinitely.

Inherited From:

Default Value:
  • false

readonly netPlaybackRate :number

Read-only value denoting the net playbackRate, including the effects of this PlaybackController's SpeedControls.

Inherited From:

pauseImmunity :PauseEvent|Array.<PauseEvent>

The PauseEvent or Array of PauseEvents that this PlaybackController will be immune to. Set this parameter to [] for this PlaybackController to have no pause immunity.

Inherited From:

Default Value:
  • nc.defaultPauseImmunity

playbackRate :number

Value multiplying the progression of the 'time' value. To play twice as fast use 2, for items that can play backwards, use negative values.

Inherited From:

Default Value:
  • 1

readonly playbackState :string

Read-only string denoting the current playback state: 'stopped', 'paused', or 'playing'. State values are available in 'nc.constants.playbackStates'.

Inherited From:

Default Value:
  • nc.constants.playbackStates.stopped

speedControl :SpeedControl|Array.<SpeedControl>

The SpeedControl or Array of SpeedControls that this PlaybackController is affected by.

Inherited From:

Default Value:
  • nc.defaultSpeedControl

type :string

Type identifier.

Inherited From:

METHODS

playOnceAsEvent(fadeInTime (opt), fadeOutTime (opt), returnToTimeline (opt))

Plays this Timeline as a 'one time animation event', tweening influence at its start and return-tweening influence just before its end for smooth transitions. [REQUIREMENT: optional code module - 'waitThens']

Parameters:
Name Type Attributes Default Description
fadeInTime number <optional>
 

The amount of time to fade in this Timeline's influence. If left undefined, the value will default to either .25 seconds, or 10% of this Timeline's duration (whichever is smaller).

fadeOutTime number <optional>
 

The amount of time to fade out this Timeline's influence before it ends. If left undefined, the value will default to either .25 seconds, or 10% of this Timeline's duration (whichever is smaller).

returnToTimeline Timeline <optional>
 

The Timeline that will have influence after this 'event' completes. If this value is left undefined, then it will default to the Timeline that had the highest influence when this function was originally invoked.

playOnceWithInfluence(lazyStopCallbackOwner (opt), lazyStopCallbackName (opt), lazyStopCallbackArgs (opt))

Sets the Timeline's influence to 1 (so this Timeline assumes complete controll) and then invokes 'playOnce'.

Parameters:
Name Type Attributes Default Description
lazyStopCallbackOwner object <optional>
 

The object owning the optional callback function that is triggered when a lazy stop occurs.

lazyStopCallbackName string <optional>
 

The name of the optional callback function that is triggered when a lazy stop occurs.

lazyStopCallbackArgs Array | any <optional>
 

Parameters for the optional callback function that is triggered when a lazy stop occurs.

playWithInfluence()

Sets the Timeline's influence to 1 (so this Timeline assumes complete controll) and then invokes 'play'.

swoopInfluence(endValue, duration (opt), tweenType (opt), completionCallbackOwner (opt), completionCallbackName (opt), completionCallbackArgs (opt)) returns {Swooper}

Swoops (interpolates) the Timeline's influence from its current value to the given end value over the duration. It should be noted, that Timeline.influence cannont be directly decreased, this must be done passively be increasing the influence of another Timeline.

Parameters:
Name Type Attributes Default Description
endValue number  

The ending value for the influence.

duration number <optional>
 

The duration for the interpolation. [DEFAULT: 0]

tweenType TweenType <optional>
 

The TweenType, determining the method of interpolation. [DEFAULT: nc.tweenTypes.Linear]

completionCallbackOwner object <optional>
 

The object owning the callback function that is called when the Swooper completes.

completionCallbackName string <optional>
 

The name of the function that is called when the Swooper completes.

completionCallbackArgs Array | any <optional>
 

Arguments for the function that is called when the Swooper completes.

Returns:
Swooper
Methods below are inherited from the parent class.

addLazyStopCallback(callbackOwner, callbackName, callbackArgs (opt))

Adds a callback that occurs upon the next 'lazyStop', which occurs any time the time reaches the startTime or endTime while the 'lazyStop' flag is true. It should be noted that all lazyStop callbacks are consumed upon encountering a lazyStop, and would need to be-added to be triggered upon subsequent lazyStops.

Parameters:
Name Type Attributes Default Description
callbackOwner object  

The object owning the optional callback function that is triggered when a lazy stop occurs.

callbackName string  

The name of the optional callback function that is triggered when a lazy stop occurs.

callbackArgs Array | any <optional>
 

Parameters for the optional callback function that is triggered when a lazy stop occurs.

Inherited From:

addStateChangeCallback(callbackOwner, callbackName, callbackArgs (opt))

Adds a callback that occurs if/when any component of this PlaybackController has changed. This can be used to manage processes that run entirely outside of the IncisorĀ® system by providing a callback to update said processes upon any change. A string denoting the triggering change will be passed in as the callback function's first parameter, and user-defined parameters will follow.

Parameters:
Name Type Attributes Default Description
callbackOwner object  

The object owning the optional callback function that is triggered when any component of this PlaybackController has changed.

callbackName string  

The name of the optional callback function that is triggered when any component of this PlaybackController has changed.

callbackArgs Array | any <optional>
 

Parameters for the optional callback function that is triggered when any component of this PlaybackController has changed.

Inherited From:

addTimeUpdateCallback(callbackOwner, callbackName, callbackArgs (opt))

Adds a callback that occurs any time the 'time' property is updated, which happens while this PlaybackController is playing, but also when time is set directly. The time value will be sent to this callback as its first parameter, with any user-defined args following.

Parameters:
Name Type Attributes Default Description
callbackOwner object  

The object owning the callback function that is triggered when time is updated.

callbackName string  

The name of the callback function that is triggered when time is updated.

callbackArgs Array | any <optional>
 

Args for the callback function that is triggered when time is updated.

Inherited From:

dispose()

Removes internal IncisorĀ® references to this PlaybackController in order to aid memory management.

Inherited From:

pause()

Changes the playbackState to "paused", and pauses the progression of the 'time' value.

Inherited From:

play()

Changes the playbackState to "playing", and begins the progression of the 'time' value. While playing, the PlaybackController automatically updates the 'time' value once every fixedUpdate.

Inherited From:

playOnce(lazyStopCallbackOwner (opt), lazyStopCallbackName (opt), lazyStopCallbackArgs (opt))

Starts playing with 'time=startTime' (or if playbackRate is negative, 'time=endTime') and sets the 'lazyStop' value to true. An optional callback function can be provided for when playbackController stops - this callback is consumed upon stopping.

Parameters:
Name Type Attributes Default Description
lazyStopCallbackOwner object <optional>
 

The object owning the optional callback function that is triggered when a lazy stop occurs.

lazyStopCallbackName string <optional>
 

The name of the optional callback function that is triggered when a lazy stop occurs.

lazyStopCallbackArgs Array | any <optional>
 

Parameters for the optional callback function that is triggered when a lazy stop occurs.

Inherited From:

removeLazyStopCallback(callbackOwner, callbackName)

Removes the given lazyStop callback.

Parameters:
Name Type Attributes Default Description
callbackOwner object    

The object owning the callback to be removed.

callbackName string    

The name of the callback to be removed.

Inherited From:

removeStateChangeCallback(callbackOwner, callbackName)

Removes the given stateChange callback.

Parameters:
Name Type Attributes Default Description
callbackOwner object    

The object owning the callback to be removed.

callbackName string    

The name of the callback to be removed.

Inherited From:

removeTimeUpdateCallback(callbackOwner, callbackName)

Removes the given timeUpdate callback.

Parameters:
Name Type Attributes Default Description
callbackOwner object    

The object owning the callback to be removed.

callbackName string    

The name of the callback to be removed.

Inherited From:

stop()

Changes the playbackState to "stopped" and sets the 'time' value to 'startTime'.

Inherited From: