마법적 구슬형태 제작



마법적 구슬형태 제작

금별 0 2,139 2019.08.30 06:32

 

I guess this is the first entry to this category, since I never had such a demand for a write-up before. So here goes!

The different between this format and regular “My take on shaders” post is that this is a more direct format, just going through a particular effect that I find too specific to write a complete tutorial about. Also, in some cases, like this one, I won’t be providing the completed code but I will be writing about the general idea and the process behind the specific effect.

In my tweet I mentioned it being a form of “raymarching” though I might be using the term loosely here. While I use a loop to move towards a certain direction, the technique doesn’t really resemble traditional raymarching. So keep that in mind.

 

The core idea

 

I’ve been constantly thinking about how to take advantage of past effects, and in this case I had an idea concerning the “layered parallax” effect that I demonstrated in an older post.

With that technique, you could sample a texture using coordinates that had been offset “inwards” of the object, by using the camera’s view direction in tangent space. The effect is super useful for adding some depth to materials like ice, or tiles or basically anything you want to make it look like “there’s something underneath the surface”. The result looked something like this:

 

 

My thoughts going from this effect were these:

  • Let’s ditch the main texture, don’t need it for now
  • What if in every “layer” of this effect, I performed a “step” function on a 2D noise texture, where the cutoff value ranges from 0 to 1 based on the “index” of the layer?

The “stepping” (that’s what I’ll call “using the “step” function” from now on) was inspired by the concept of using grayscale textures as heightmaps, with their value representing depth. Adjusting the cutoff value of a simple texture with a radial gradient looks like this:

 

As if the texture actually represents a cone and when I’m using “step” I’m cutting slices into it which decrease in size as I get to the top. Basically I’m super-over-explaining SDFs here, but that representation really helped clear things in my head.

So, if I were to assign 1 to the cutoff value of the out-most layer, 0 to the value of the deepest layer and the inbetween values to the inbetween layers, each parallax layer would have a differently sized “slice” of the texture.

If we add that “stepping” to each layer, with the same radial gradient texture, we end up with something like this (the texture is tiled 5 times so just pay attention to the middle one):

 

This uses 10 iterations on the grayscale texture

Turn up the iterations/number of layers (here it’s something 128) and you have smoothness:

 

Add a somewhat more complex texture, like a simple cloud texture and you have this:

 

 

Trying out random textures and noises is super fun with this one btw.

Add the material on a sphere and you have the ORB:

 

 

Add 2 HDR colors, and lerp between them based on the layer “index” instead of just lerping the intensity from 0 to 1 (also some Post-processing for the looks):

 

 

Add some waving displacement when sampling the texture in each layer for some extra variation and *magic*:

 

 

And that’s it! I hope that was helpful and I hope there will be many more write-ups in the future, especially as I’m easing into VFX stuff at the moment of writing. So, I’ll see you in the next one! ????



 

These posts will never go behind a paywall. But if you really really super enjoyed this post, consider buying me a coffee, or becoming my patron to get exciting benefits!

 

Comments


번호 포토 분류 제목 글쓴이 날짜 조회
202 언리얼4 언리얼4 - 아우라 이펙트 머트리얼 제작 노드 참고자료 금별 2021.12.11 2443
201 언리얼4 언리얼4 - 월드 포지션 활용 쉴드 응용 머트리얼 노드 금별 2021.12.11 2266
200 언리얼4 언리얼4 - 매지컬 쉴드 제작 머트리얼 노드 금별 2021.12.11 2250
199 언리얼4 언리얼4 - 화염검 이펙트 제작 과정(중국어) 금별 2021.12.06 1292
198 언리얼4 언리얼4 - 쇼크웨이브 / 그라운드 이펙트 제작과정 댓글+1 금별 2021.12.02 1916
197 언리얼4 언리얼4 + 후디니 활용 구체 변형 효과 예제 댓글+1 금별 2021.12.01 1359
196 언리얼4 언리얼4 - 암석 스파이크 제작 과정(중국어) 동영상new 금별 2021.11.30 1197
195 유니티 유니티 - 귀멸의 칼날 느낌 검기와 회오리 이펙트 제작과정 프리뷰(중국어) 금별 2021.11.30 3154
194 유니티 유니티 - 검기/라인활용 크리스털 파괴효과 제작과정(중국어) 금별 2021.11.26 1451
193 유니티 유니티 이펙트 - 플로우맵 활용 흩어지는 연기제작(중국어) 금별 2021.11.01 1710
192 유니티 유니티 이펙트 - 토네이도 효과 만들기(중국어) 금별 2021.11.01 1394
191 유니티 유니티 이펙트 - 버택스 옵셋, 음악 리듬 머터리얼 만들기(중국어) 동영상new 금별 2021.11.01 1595
190 유니티 유니티 - 트레일 이펙트 제작 참고영상 금별 2021.11.01 2134
189 유니티 유니티 쉐이더 - 간단한 parallax 얼음표현 금별 2021.10.01 2981
188 언리얼4 언리얼5 - 기초 카오스(파괴/Destruction) 튜토리얼 금별 2021.09.27 2050
187 언리얼4 언리얼4 - 2d 원형 회오리 쉐이더 제작 참고 노드 금별 2021.08.29 2487
186 유니티 유니티 이펙트 튜토리얼 - 툰느낌의 토네이도 제작 영상 금별 2021.05.24 2146
185 유니티 유니티/블랜더 - 토러스 노멀로 불규칙한 링 모양 만들기 금별 2021.05.24 2821
184 언리얼4 언리얼4 Material Node에서 자주쓰는 Position 종류 노드 설명 금별 2021.05.24 1690
183 유니티 유니티 - Magical Plasma Orb 튜토리얼 금별 2021.05.20 1386
182 유니티 유니티 쉐이더 그래프 - 흐르는 강 쉐이더 튜토리얼 금별 2021.04.27 1699
181 유니티 유니티 쉐이더그래프 - Potion Liquid Wobble(액체 흔들림 효과) 금별 2021.04.26 2662

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand