Package-level declarations

Types

Link copied to clipboard
class AppenderTextSequencer(var msBetweenCharacters: Long, listener: (characters: List<Char>) -> Unit) : TextSequencer

Provides a TextSequencer that is time based and dispatches lists of Char to be appended. At each step of the sequence a list of Char will be dispatched to the listener. The delay between characters must be specified, in milliseconds, with msBetweenCharacters. A listener must be provided.

Link copied to clipboard
class GridTextSequencer(var msBetweenCharacters: Long, listener: (characters: List<CharacterPosition>) -> Unit) : TextSequencer

Provides a TextSequencer that is time based and dispatches lists of CharacterPosition for a grid based arrangement. At each step of the sequence a list of CharacterPosition will be dispatched to the listener. The delay between characters must be specified, in milliseconds, with msBetweenCharacters. A listener must be provided.

Link copied to clipboard

Provides a class for sequenced text control using a sequencer.

Link copied to clipboard

Provides an interface for listeners to SequencedTextController events.

Link copied to clipboard
interface TextSequencer

Provides an interface for sequencers for displaying TextFrame.