Sea Wave creation

Contests and Challenges

Hi all,

is there any course here tech on how to do sea wave, i am looking for something like this

https://www.youtube.com/watch?v=7ezlvFzAE0E


Thanks

  • Jonathan Gonzalez(jgonzalez) replied

    I didn't see a ton of the water from the video, but it mostly looks like they're using basic water planes. The large wave at the end actually looks like a 3d mesh with a water shader applied. That being said I would think just about everything shown can be easily replicated.

    Unity has some water prefabs in their Environment package (Assets>Import Package>Environment). There's one that includes things like sea foam and some subtle waves. You could use that as your base. For creating the splashes, you could use a particle system so that when it detects the water you play a water splashing particle effect. The drops of water on the screen are done using a shader like this: https://assetstore.unity.com/packages/vfx/shaders/fullscreen-camera-effects/rain-drop-effect-2-59986

    I'm not entirely sure how that big wave was created but I'm going to assume it included some sort of mesh deformation. If you wanted to buy an asset that cover all your water needs you can find a few like this: https://assetstore.unity.com/packages/vfx/shaders/suimono-water-system-4387

    Water is typically created through fancy shaders so depending how complex you want your water to be will determine if it's worth building something on your own. 

    Oh I forgot to mention, you could watch this course to see how the built in water prefabs can be used: https://cgcookie.com/course/fundamentals-of-terrain-generation 



  • malek sakah(maleksk) replied

    Thanks :)

  • Jonathan Gonzalez(jgonzalez) replied

    I would like to cover a water shader at some point, but typically those are far more complex. They usually include having fancy lighting, using mesh distortion to mimic waves and water movement and are also used with scripting to control things like bouyancy and general movement of objects on water. 

  • resin213 replied

    I often see water shaders, but what I would really like to see a tutorial on is creating and animating a tube wave, and how it crashes, and how to blend the planes maybe.

  • Jonathan Gonzalez(jgonzalez) replied

    Mimicking anything liquid in Unity is tough. Fluid simulations are not something Unity really does well if at all. I think the best solution at the moment would be to try to recreate it in a 3d program like Blender then bake out an animation or simulation that could be used in Unity. You could also sculpt out various tube waves in Blender, then apply a fancy shader that "fills" the mesh with a water effect to look like it's growing over time. I haven't deal much with water physics or shaders so my advice on that would be limited. 

  • resin213 replied

    I've been using the Suimono water asset you linked above,and I would second that recommendation. Getting a decent look on large crashing waves seems difficult to say the least. personally I'm more interested in waves crashing over rocks than in the actual tube effect. I might be satisfied with the animated deformation you can get from Suimono, combined with a good soundfile, and some pulsing particle systems for the crashing foam.

  • Jonathan Gonzalez(jgonzalez) replied

    I think something like that would be far more feasible. I've never worked with complex wave shaders, but I'm sure there's a way to detect if the wave hits a solid object at a specific height. At that point you could create more foam and add in a unique splash effect. Sounds easier in theory than in practice I'm sure. Would be fun to test this out when I do approach this type of shader.