ConstantConfig

@Serializable
data class ConstantConfig(val weather: WeatherType? = null, val dayCycle: Int? = null)

固定の天候・時間設定を保持するデータクラス

Constructors

Link copied to clipboard
constructor(weather: WeatherType? = null, dayCycle: Int? = null)

Properties

Link copied to clipboard
val dayCycle: Int? = null

固定の時間(一日を24 * 4で割った値、nullの場合は時間が変化する)

Link copied to clipboard
val weather: WeatherType? = null

固定の天候(nullの場合は天候が変化する)