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



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

금별 2 6,180 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

번호 포토 분류 제목 글쓴이 날짜 조회
1184 유니티 유니티 앰플리파이 셰이더 - 스텐실 크랙 간단 제작과정(한글자막) 금별 06.24 533
1183 언리얼4 언리얼5 간단팁 - 컨텐츠 브라우저 복제팁(Advanced Copy Here) 금별 06.23 464
1182 언리얼4 린반라이브 - 무엇이든 물어보세요(크래쉬 해결 방법/스태틱메시 뷰모드에서 노멀맵 보기/애셋 삭제 주의사항 등) 금별 06.19 349
1181 언리얼4 언리얼5 - Niagara로 실감나는 핏물 VFX 제작과정(한글자막) 파트1 금별 06.19 521
1180 유니티 유니티 - Ground Effect와 검기 기초 제작가이드(한글자막) 금별 06.17 562
1179 유니티 유니티 VFX[검기] : 검기 나비 VFX/Particle System과 Airflow 효과 제작가이드(한글자막) 금별 06.17 515
1178 유니티 유니티 VFX[검기] : 검광과 화염 효과 제작 가이드(한글자막) 금별 06.17 464
1177 유니티 유니티 VFX[검기] : 세 가지 검기(Sword Trail) 제작 기법 가이드(한글자막) 금별 06.17 463
1176 언리얼4 언리얼5 - 마야 프렉쳐 시뮬레이션을 언리얼에서 임포팅(한글자막) 금별 06.16 430
1175 언리얼4 The Ultimate UE5 UI Material Tutorial: Mastering Radial Progress Bars ashif 06.12 682
1174 언리얼4 Step-by-Step: Building a Customizable Slider Material in Unreal Engine ashif 06.11 751
1173 언리얼4 언리얼5 - Sci-fi 격자 지형 균열 VFX 제작과정(한글자막) 금별 05.30 1445
1172 언리얼4 언리얼5 - 레이저 반사 VFX 제작과정(한글자막) 금별 05.30 1469
1171 유니티 유니티/맥스/포토샵 - 간단한 큐브 애니메이션 효과 제작예제(한글자막) 금별 05.30 1326
1170 언리얼4 Step-by-Step Guide: Healing Aura Effect in Unreal Engine 5 Niagara ashif 05.27 1394
1169 언리얼4 언리얼 - 1,2개의 축을 제어하는 월드 기반 회전 예제 금별 05.26 1317
1168 유니티 유니티 - 그라디언트 맵으로 실시간 VFX 제작하기(한글자막) 금별 05.26 1265
1167 3D 3DS Max - 직각 Sword Slash 메쉬 제작방법 금별 05.23 1202
1166 언리얼4 언리얼/후디니 - 코페르니쿠스 시뮬레이션 데칼을 언리얼에서 활용하는법(한글자막) 금별 05.21 1449
1165 언리얼4 언리얼5 - 죽음 디졸브 이펙트 Niagara SkeletalMesh Location 사용 금별 05.21 1295
1164 언리얼4 후디니/언리얼 - 유체 및 불규칙한 동적 오브젝트를 UE로 내보내는 두 가지 방법 – ABC와 버텍스 애니메이션 금별 05.20 1284
1163 유니티 유니티 - 음률 리듬 VFX 제작 가이드(한글자막) 금별 05.20 1267

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand