유니티 이펙트 제작과정 - 사슬로 감싼 폭발형태 제작



유니티 이펙트 제작과정 - 사슬로 감싼 폭발형태 제작

금별 0 4,966 2019.08.30 06:46

 


First time doing an event or competition for anything art related, lets see what happens!

I’m going to create a few chains that sprout from the ground then pull the character to the ground as a Root.

HD Video (Slight Changes aswell) https://youtu.be/MoxwG17ujjM 30

 

Progress #1

I created a chain of planes then duplicated them and assigned a curve modifier and then created a shape key to blend the two together.

 

2


Then I created a simple segment of a chain and rendered them with only the shadows enabled to get a faked 3D feel when coupled with the above mesh

 

4


I also quickly put the render result into Photoshop to generate a normal map, apply that to the default cutout particle shader, and tested the shape keys

 

ChainExample


Then a simple scene with a floor shaped like this

 

1


I need to work on animations and some smoke sims, Might try out Houdini at some point, Who knows!

 

3

 

After some time of messing around on Houdini I came to the conclusion that I can’t export because I’m broke and had to redo my fluid in Blender, However not to fear as It came out better and smoother than Houdini, (who would have thought)

 

Blood

 

Then I played around in Unity forever again and made things look not crappy…
https://twitter.com/JuaneGray/status/1148193104492580864 31

 

I edited the values, I semi want it to be Grungy, but yeah, 3am right now, I will work on it tomorrow/today haha some other pictures that I just tweaked a tiddle

 

1

 

2

 

3

 

I ended up redoing the entire thing from scratch because I felt it was off.

None the less steamed into the next phase, same concept, chains and root, but this time I used blenders curves to drive the shape keys for the animation (Previously 2.79 did not have “Apply curve as shape key” under their curve modifier). And instead of making a 2d plane, I decided to use low poly mesh since the effect wouldn’t be demanding on mesh or overdraws.

 

1


I then created some materials, nothing too fancy, just some world position with offset and multiplied that with a color (Glow)

 

For the dent I placed the ground mesh on render layer 1999 and the dent on 2000 so it would render infront of the ground but behind any mesh.

I drew the cracks in photoshop by hand using a soft brush then applying the “Maximum” filter.
Applied custom animations to a lot of the objects and coupled them with event ticks inside the animation to call a public method “Spawn Gameobject” and this in born 

 Video in next post

2

 

3

 

Here is the Chain Shader (If you wanted an easy dissolve) also added the dissolve texture generated in Photoshop

 

Shader

 

BloodDisolve

 

Oh and as for the floor mesh that explodes, I created a cylinder with no caps, grid filled the top and bottom, subdivided it and then applied the cell fracture add on (enable through prefs) then I simply smart Uv projected each part (100 of them). Inside unity I applied a mesh collider (convex for rigid bodies to work) and applied this script to the parent FBX



public void Start()
{
    foreach (var objects in Bricks)
    {
        var dir = transform.position - objects.transform.position;
        var distance = dir.magnitude;
        if (distance <= reqDist)
        {
            objects.transform.gameObject.GetComponent<Rigidbody>().AddForce(dir * forceAmmount);
            objects.transform.gameObject.GetComponent<Rigidbody>().AddForce(Vector3.up * upForce);
        }
    }
}

 

 

that way they are forced from the center out and some are forced up (like a mushroom cloud)

 

Here are the Cracks alpha mask and Normals

 

Crack_Normal2

 

Crack_NormalMask

 

Comments


번호 포토 분류 제목 글쓴이 날짜 조회
44 유니티 유니티 - 기어즈5 Hammer of Dawn 이펙트 만들기 댓글+1 금별 2020.05.16 1805
43 유니티 포토샵으로 디졸브 쉐이더를 사용해 2D 툰이펙트 제작팁 댓글+2 금별 2020.05.16 3842
42 언리얼4 언리얼4 이펙트 튜토리얼 - 애펙을 사용한 트랜지션 효과 만들기 금별 2020.04.01 2525
41 언리얼4 언리얼4 이펙트 팁 - 꿀렁이는 액체머터리얼 금별 2020.03.14 3490
40 언리얼4 언리얼4 이펙트 튜토리얼 - 젤다의 전설느낌 디졸브링 파티클FX 제작 금별 2020.02.27 3382
39 유니티 유니티 이펙트 팁 - RzFX Flow Trail in Unity 금별 2020.02.27 4085
38 언리얼4 언리얼4 이펙트 참고정보 - 스플라인에 타일링되는 리퀴드 메쉬 제작 사진new 댓글+4 금별 2020.02.25 2721
37 언리얼4 언리얼4 이펙트 팁 - 쇼크웨이브 제작 댓글+1 금별 2020.02.19 3307
36 유니티 유니티 이펙트 팁 - 아주 간단히 보는 포털제작팁 댓글+1 금별 2020.02.10 1884
35 언리얼4 언리얼4 이펙트 팁 - 윈터 미믹 제작과정 금별 2020.02.07 4051
34 2D Stylized Animated 2D 이펙트: 팁과 트릭 금별 2020.01.20 4299
33 언리얼4 언리얼4 - 호박 폭발 이펙트 참고 및 노드예제 금별 2019.12.09 3131
32 유니티 유니티 이펙트 팁 - 데스스트랜딩 홀로그램 효과 참고해 만들기 금별 2019.11.19 3230
31 언리얼4 언리얼4 - 블랜더를 활용한 지형 버텍스 옵셋 이펙트 금별 2019.11.19 1783
30 유니티 유니티 이펙트 팁 - 포털제작 금별 2019.10.19 5069
29 언리얼4 언리얼4 이펙트 팁 - Rift to R’lyeh FX 금별 2019.10.15 3651
28 언리얼4 언리얼4 - 버텍스 옵셋 예제와 노드 금별 2019.09.16 3338
27 유니티 유니티 - 포탈이펙트 예제와 제작과정 금별 2019.09.09 6012
열람중 유니티 유니티 이펙트 제작과정 - 사슬로 감싼 폭발형태 제작 금별 2019.08.30 4967
25 유니티 [NDC 2018] 게임 이펙트를 시작하는 법 금별 2019.07.18 1707
24 언리얼4 [NDC] 〈드래곤하운드〉 비주얼이펙트 연출 (언리얼4) 댓글+1 금별 2019.07.18 1852
23 유니티 유니티 이펙트 - 발사체 참고영상외 + 팁 금별 2019.05.09 4950

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand