Scene

@Serializable
data class Scene(val name: String, val screen: ScreenObjectSnapshot)

Represents a scene configuration.

A scene groups a named screen state that can be serialized and restored. It is typically used to save, load, or switch between different screen layouts.

Constructors

Link copied to clipboard
constructor(name: String, screen: ScreenObjectSnapshot)

Properties

Link copied to clipboard

The display name of the scene.

Link copied to clipboard

A snapshot of the screen state that defines the contents and layout of the scene.