aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/WaterParams.kt
blob: 61cb2a0d0b2d18a74b146f5b5ab3b93938fafedf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import info.laht.threekt.math.Color
import info.laht.threekt.math.Vector3
import info.laht.threekt.textures.Texture

data class WaterParams(
  val waterNormals: Texture,
  val alpha: Double,
  val sunDirection: Vector3,
  val sunColor: Color,
  val waterColor: Color,
  val distortionScale: Double
)