SessionInfo

@Serializable
data class SessionInfo(    val name: String,     val description: String? = null,     val currentPath: String,     val isAdminMenuEnabled: Boolean,     val isRunningExperimental: Boolean,     val ready: Boolean,     val isUnloading: Boolean,     val isCopyPastingEnabled: Boolean,     val streamingInProgress: Boolean,     val isServer: Boolean,     val isPausable: Boolean,     val gameDefinition: DefinitionId,     val settings: SessionSettings,     val camera: CameraController? = null)

Constructors

Link copied to clipboard
fun SessionInfo(    name: String,     description: String? = null,     currentPath: String,     isAdminMenuEnabled: Boolean,     isRunningExperimental: Boolean,     ready: Boolean,     isUnloading: Boolean,     isCopyPastingEnabled: Boolean,     streamingInProgress: Boolean,     isServer: Boolean,     isPausable: Boolean,     gameDefinition: DefinitionId,     settings: SessionSettings,     camera: CameraController? = null)

Properties

Link copied to clipboard
val camera: CameraController? = null
Link copied to clipboard
val currentPath: String
Link copied to clipboard
val description: String? = null
Link copied to clipboard
val gameDefinition: DefinitionId
Link copied to clipboard
val isAdminMenuEnabled: Boolean
Link copied to clipboard
val isCopyPastingEnabled: Boolean
Link copied to clipboard
val isPausable: Boolean
Link copied to clipboard
val isRunningExperimental: Boolean
Link copied to clipboard
val isServer: Boolean
Link copied to clipboard
val isUnloading: Boolean
Link copied to clipboard
val name: String
Link copied to clipboard
val ready: Boolean
Link copied to clipboard
val settings: SessionSettings
Link copied to clipboard
val streamingInProgress: Boolean