유니티 쉐이더 팁 - Rime 스타일의 폭포 제작



유니티 쉐이더 팁 - Rime 스타일의 폭포 제작

금별 2 3,682 2019.11.26 17:21

There are games with such a memorable visual that it is terrible to consider the time spent on its development, take at least the latest God of War or RDR2. And there are projects that bribe their atmospheric, even if they are far from AAA. As an example, RiME has been praised for its style, sound and history. And recently, the level designer of the game went to the CD Projekt Red team to work on Cyberpunk 2077. RiME also inspired 3D artist Math Roodhuizen to create his own art.

And amid all this, I stumbled upon ArtStation on a realistic water creation guide. If last time it was about the river, then this time about the stylized waterfall. In the first part we will explain how to create a "ripple effect", and even directly in the game engine. For convenience, all steps are accompanied by gifs and / or pictures.
 


First, thanks to Simon Trumpler, an artist from Tequila Games who worked on RiME . I was still new to shaders and VFX when I found his stuff and thought, “Wow, can I be able to do the same?”. I recommend reading the report to learn more about how to create stylized effects (such as fire, for example).

Now let's talk about the creation of a waterfall. This will be especially useful for people who are not familiar with the Shader Graph system. Our goal: to learn new ways of working and better understand the shaders.

I will use the example of Unity, but most of the methods are applicable in UE4 - if you are used to working there, just follow me. For convenience, each step is visualized by a gif or picture.

So, you will need:
 

  • Unity 2018.
  • Amplify Shader Editor (Unity plugin). But if you do not want to spend money on it, install Unity 2017 and download the free Shaderforge from the asset store (the new version of the engine does not support this plugin, but it still works in Unity 2017). Both tools are almost the same, except that some moments are called differently.
  • Autodesk Maya.
  • Something to create or edit textures. I use Photoshop, and sometimes even Substance Designer (but you definitely won't need it for this waterfall).


First, about the "ripple effect" that occurs when a waterfall falls on the surface. It can also be used for other purposes, for example, to create pulsations around objects in water.



Open Unity and make sure you have the shader plugin installed. At the time of this writing, Unity has its own Shader Graph, which is still being developed. And while it’s not ready, I still recommend using the Amplify Shader Editor for Unity 2018 or Shaderforge in Unity 2017.

Create a new material and give it a name (I have it MAT_WaterWrinkles). Then right-click on the material in the Project Tab and go to Create> Amplify Shader> Surface Shader. In this case, the new shader will automatically apply.



You can select a shader at any time in the Materials tab> drop-down list of shaders (for Shaderforge there will be something like a PBL shader). Remember that the shader must be named both in the folder list and in the shader itself after it is opened.



As soon as you open a new shader, you will see something like this:



I will not write a detailed guide on the use of Shader Graph, and if you are completely new, first read the introductory guides.

In any case, to get the desired effect, we first need the usual Panner. Here it is with a test texture on the plane:



Panner moves the UV coordinates. Make sure the Wrap Mode texture is set to Repeat. In Shaderforge, you may have to connect a temporary node to the Panner input, with Amplify some of these basic values ​​are already included in the node itself.

So, we have a moving texture. But we want to achieve this effect:



And for this you need to scroll like this:



As you can see, the structure of the node is the same - Panner simply moves the UV coordinates in the U and V directions (or X and Y). To get the right panning direction, we need to create a custom grid with UV. GIF for clarity:

By applying the same material to a different grid, we can control the direction of the texture in 3D space when it moves in the UV space.



To enhance the effect, add a few more polygons and distort UV so that the texture in the center moves faster than at the edges. And place the UV so that the seam is not visible.



An important conclusion follows from this: good effects rarely consist of one system and often represent a combination of several.

We got the texture moving in the right direction at the right speed. The UV sweep is placed in such a way that moving from right to left in the UV space with Panner turns into a movement in and out in the 3D space. To avoid seams in the texture on the 3D model, UV sweep must be added (hotkey X for snap to the grid) to the vertices of the texture space vertically. As a result, we have achieved the desired effect.



Now the transparency. Let's start with the basic things. Many simple calculations that you do in a shader will have values ​​from 0 (black) to 1 (white). That is, 0.5 is a shade of gray, and 0.2 is a shade of dark gray. When you apply these values ​​(in this case to the Opacity channel of the main output node), you will control the level of transparency of the material. Keep in mind that you first need to enable this feature. In Amplify, you can change the rendering type (in blend mode) from opaque to, for example, transparent. In this case, we will use the rendering type Transparent Cutout - the pixel displayed by this material is either completely transparent or completely opaque. This can be seen on the gif above - there are no "translucent" pixels displayed by this shader.



Take the gradient texture in increments and place it on the shader. Here it connects to the output of the albedo (color) main node.



And here it connects to the output of the Opacity Mask (this parameter is enabled when rendering type is Transparent Cutout).



You can see that the gradient texture uses black and white pixel values ​​to determine transparency or opacity. Everything from 1 (white) to 0.5 (gray) becomes opaque, and everything from 0.5 (gray) to 1 (black) is completely transparent (or not displayed at all). Opacity Mask creates a hard line and rounds the values ​​to 0 or 1, depending on which number is closer.

Another grayscale texture:



Connected to the Opacity Mask:



You get the idea. And guess how you can use it:



You see a mostly blue image scrolling in the Shader Graph. And the fact that I use only R (red) output of this node. For the sake of optimization, I packed two grayscale textures (grayscale textures) into one file, but this is not necessary. Similar images can be packaged using Photoshop or Substance Designer.



The ripple effect is a good start, but you can do better. Why not put two grayscale textures on top of each other to make the ripple effect more random?



I use the same texture, but I add different channels. I scroll through them at different speeds and slightly in different directions. The texture has a good gradient of gray values, which gives the feeling of a random ripple effect.

There is one more thing on the next gif that we haven’t discussed yet - so your option may look a little different:



You can see, for example, a pixel with a value of 0.2 (which is not rendered) passes over a pixel with a value of 0.4 (which is also not rendered) and suddenly becomes a pixel with a value of 0.6 - because we use an additional node (0.2 is added to 0.4 and it turns out to be 0.6). Adding these two wave grayscale textures on top of each other at different speeds and gives close to the desired effect.



Here, to demonstrate the result, I added grayscale-textures on each other in Photoshop.



However, the seam at the end of the mesh is still distinct. And we need to get this:



Instead of this:



In the first of the two gifs, the pulsations slowly subside and become smaller as they approach the edge of the grid. The easiest way to do this is to use vertex color (vertex colors).

Each model vertex contains its own data (for example, X, Y, and Z coordinates), as well as a color that has a value from 0 to 1. You can also set the color of the vertices in the 3D editor.


Most of the outer vertices are black (that is, they have a value of 0). They become white (closer to 1) when approaching the center. Note that you will need additional Subdivisions to get vertices that can be colored.



For example, in Maya for coloring, you can go to the Mesh Display> Paint Vertex Color menu and click on the More Options field.

Now we can connect Vertex Color in our shader using Multiply.



I applied a gradient over the textures used and set the layer mode to Multiply.



The gradient enhances the gray value to 0 (black), so it will be more difficult to render the pixels (they are not displayed below the value of 0.5). This leads to the fact that the ripple lines shrink closer to the edge (the colors of the peaks mainly act as a gradient).



I added a few more nodes to control the thickness of the ripple lines. Here is the complete graph:



Just experiment with the speed / direction of scrolling, adjust the texture and try to change the tiling to squeeze the maximum out of the effect.

This will help us in creating a more complex shader - a waterfall. We'll talk about it in the next part.

Source: https://habr.com/ru/post/434620/

Comments

키자비 2020.02.17 00:52

멋지네요~ 감사합니다.
커피맥주 2020.09.15 02:56

번호 포토 분류 제목 글쓴이 날짜 조회
816 언리얼4 Water Bending FX in UE5.4 Niagara | For Patreon ashif 04.26 15
815 언리얼4 언리얼/유니티/고돗엔진 - 셰이더 최적화 간단팁(한글자막) 금별 04.26 28
814 유니티 유니티 앰플리파이 셰이더 - HotWater셰이더 GUI 및 자료사용 예제 영상 금별 04.26 26
813 유니티 유니티 - 쿠파 취업 클래스 [실강의 맛보기 - 얼음스킬제작과정] 금별 04.26 24
812 3D 이펙트의 모든것! 게임직 TA 김용남 인터뷰_01 금별 04.24 45
811 언리얼4 언리얼5 - HLSL을 활용한 이미지 블러 효과 제작과정(한글자막) 금별 04.24 50
810 언리얼4 언리얼5 - 아티스트를 위한 흥나는 프로파일링!: RenderDoc 금별 04.24 46
809 3D 메쉬 UV패닝을 활용한 곡선 트레일 제작짧은팁 금별 04.22 61
808 언리얼4 언리얼5 - 포스트 프로세스 활용한 글리치 효과 노드(다운로드가능) 금별 04.21 52
807 언리얼4 언리얼5/후디니 - 상호작용 VFX 시스템/VAT효과 제작과정(정교한 한글자막) 금별 04.21 47
806 언리얼4 언리얼5 - 텍스처가 없는 포스트트로세스와 같은 CRT효과 제작노드(다운로드가능) 금별 04.21 39
805 언리얼4 언리얼/유니티 - 특수효과 최적화 간단팁들 금별 04.20 53
804 언리얼4 언리얼5 - 파라곤 이펙트를 나이아가라로 리마스터링(한글자막) 금별 04.19 61
803 유니티 유니티 셰이더그래프 - 반응형 파티클 제작과정(한글자막) 금별 04.19 62
802 유니티 유니티 - 앰플리파이셰이더 활용한 극좌표 소용돌이 형태 제작과정(한글자막) 금별 04.18 54
801 유니티 유니티 - 셰이더그래프 활용한 UI에 적용동 스크롤버튼 제작과정(한글자막) 금별 04.18 56
800 언리얼4 린반 언리얼 이펙트 사소한 라이브(4.17일자) - 루멘/나이아가라 파티클라이트 외 금별 04.17 46
799 유니티 유니티 - Stylized 물속성 검기 VFX 제작과정(중국어/AI한글자막) 금별 04.16 96
798 언리얼4 언리얼 - 사인파 왜곡 머트리얼 예제 금별 04.16 83
797 3D 3DsMax - 임팩트 메쉬 제작 간단과정 금별 04.16 57
796 2D 애프터이펙트 - 2D 카툰스타일 불 제작과정 금별 04.16 58
795 2D 애프터이펙트 - 한국어_2D 카툰스타일 스파크/라이트닝 제작과정 금별 04.16 54

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand