I have a small glow based on a sphere distance field inside. A fresnel effect that samples a multicolored cubemap. Vertex Animation and texture animation.
I was thinking about doing a Simple Parallax to feel like there were some bubbles going from top to bottom.
Other than that, I am a bit lost, should I add VFXs of droplets around the mesh, other type of deformation ?
Thank you for any feedbacks, I am pretty begginner as it comes to this.
Hey, did you get any progress?
I would give parallax mapping a try, maybe fade it out on the edges using fresnel. For the bubbles inside, either try parallax again or use real particles inside the mesh, but it might be tricky in terms of transparency sorting. One thing that might help is Stencil Buffer. You render the head using ZTest LEqual and write into stencil mask buffer. Then you render the bubbles using ZTest Always, ignoring all depth testings, and mask that using the face-stencil.