ReplaySnapshotParameter

@Serializable
data class ReplaySnapshotParameter(val snapshotId: String, val fromStep: Int? = null, val toStep: Int? = null, val scale: Double? = null)

Constructors

Link copied to clipboard
constructor(snapshotId: String, fromStep: Int? = null, toStep: Int? = null, scale: Double? = null)

Properties

Link copied to clipboard
val fromStep: Int? = null

The first step to replay from (replay from the very start if not specified).

Link copied to clipboard
val scale: Double? = null

The scale to apply while replaying (defaults to 1).

Link copied to clipboard

The id of the layer snapshot.

Link copied to clipboard
val toStep: Int? = null

The last step to replay to (replay till the end if not specified).