마법적 구슬형태 제작



마법적 구슬형태 제작

금별 0 2,760 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


번호 포토 분류 제목 글쓴이 날짜 조회
658 유니티 유니티 앰플리파이 셰이더 - 패럴렉스 활용 페이크 뎁스 제작과정 금별 2023.11.30 1586
657 언리얼4 언리얼 - 단계가 뚜렷한 카툰 불 머트리얼 노드(uasset파일포함) 금별 2023.11.30 1152
656 언리얼4 언리얼 - 매트릭스 느낌의 스크롤링 머트리얼 제작노드(uasset파일포함) 금별 2023.11.30 1152
655 유니티 유니티 - 스크립트를 활용한 레이저 빔 효과 제작과정 금별 2023.11.29 2147
654 3D GODOT VFX - Easy Explosions Effect Tutorial 금별 2023.11.29 1596
653 언리얼4 언리얼5 - 카메라 오클루전 마스킹 제작팁 금별 2023.11.29 1037
652 유니티 유니티 앰플리파이 셰이더 - 크리스탈 소재 제작과정 금별 2023.11.25 1216
651 언리얼4 후디니와 섭페활용 언리얼로의 아이스스파이크 버텍스 애니메이션 프로세스 설명(얼음 hip파일포함) 금별 2023.11.25 1240
650 언리얼4 언리얼 - 머터리얼 움직임에따른 잔상번짐 해결방법 금별 2023.11.25 3189
649 언리얼4 언리얼 - Tentacle Monster Effect 금별 2023.11.23 1376
648 유니티 유니티 VFX 그래프 - 연기 포탈 샘플 제작과정 금별 2023.11.23 1369
647 언리얼4 언리얼 - 오브젝트 글리치(Technology Failure Diagram) 효과 제작과정 금별 2023.11.22 1532
646 언리얼4 언리얼5 - 월드 에서 로컬 재질 UV [한국어 팁] 금별 2023.11.19 1297
645 언리얼4 언리얼 - 에너지 아우라 이펙트 제작과정 금별 2023.11.19 1430
644 언리얼4 언리얼 - 자연스런 그을린 그라운드 데칼 제작과정 댓글+1 금별 2023.11.16 1834
643 유니티 유니티 VFX 그래프 - 모델 엣지에서 생성되는 파티클 제작과정 금별 2023.11.15 1262
642 언리얼4 언리얼 - 흐물거리는 황금 양타자형 발사체 제작과정 금별 2023.11.14 1182
641 언리얼4 언리얼 나이아가라 - 유도 미사일 효과 제작과정 금별 2023.11.12 1319
640 언리얼4 11. 11일 카페 공인스터디 이펙트102 발표내용 일부 영상(네오도쿄챌린지/무기디졸브) 금별 2023.11.12 1188
639 언리얼4 언리얼5 - 머트리얼로 제어하는 책넘김 효과 예제 및 튜토리얼 링크 금별 2023.11.09 1887
638 언리얼4 언리얼5/후디니/섭디 - 불 발사체 제작과정 part2[후디니로 메쉬제작/섭디로 WPO텍스쳐] 금별 2023.11.08 1236
637 언리얼4 [게임 이펙트 소개 02] 쌤~ 게임이펙트 쉽나요? 취업 되나요? 금별 2023.11.08 1208

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand