Represents the state of an individual layer within an animation.

interface LayerState {
    active?: null | number;
    queue: LayerQueueEntryState[];
}

Properties

Properties

active?: null | number

Index of the currently active queue entry, if any.

Queue state entries for the layer.