weather sched progression wip

This commit is contained in:
minjaesong
2023-09-01 23:56:48 +09:00
parent abee176ef4
commit 66a103bd3a
8 changed files with 178 additions and 94 deletions

View File

@@ -17,6 +17,7 @@ import kotlin.math.absoluteValue
* Created by minjaesong on 2016-07-11.
*/
data class BaseModularWeather(
val identifier: String,
val json: JsonValue,
var skyboxGradColourMap: GdxColorMap, // row 0: skybox grad top, row 1: skybox grad bottom, row 2: sunlight (RGBA)
val daylightClut: GdxColorMap,
@@ -30,9 +31,8 @@ data class BaseModularWeather(
val mixFrom: String? = null,
val mixPercentage: Double? = null,
var forceWindVec: Vector3? = null
) {
/**
* @param rnd random number between -1 and +1
*/