diff options
Diffstat (limited to 'src/main/kotlin/WaterParams.kt')
| -rw-r--r-- | src/main/kotlin/WaterParams.kt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/kotlin/WaterParams.kt b/src/main/kotlin/WaterParams.kt new file mode 100644 index 0000000..61cb2a0 --- /dev/null +++ b/src/main/kotlin/WaterParams.kt @@ -0,0 +1,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 +)
\ No newline at end of file |