I have a platforms and water under it so
waterMesh.position.y = -0.5;
platform.position.y = 0;
But after some time my platforms become under the water. I think it is something like sea level but I can’t find any information in documentation. How I can configure it or disable it?
After some time:
And even that:
When at startup time and always should be like this:
Dad72
February 17, 2023, 11:25am
2
Modify this property in your water material with a smaller value, see 0
waterMaterial.waveHeight = 0.01;
1 Like
Thanks, I’ll try. But I thought it applies only for “wave” height, not all water)
UPD: Ok, it seems like the wave was too long, so i need to decrease it length, thanks!
Dad72
February 17, 2023, 11:42am
4
Yes, but this property causes the water level to rise and then fall. So at some point, your water finds itself above your platforms.
1 Like