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



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

금별 0 6,610 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


번호 포토 분류 제목 글쓴이 날짜 조회
293 언리얼4 언리얼5 - 시간 역재생(프렉쳐) 효과 튜토리얼 금별 2022.08.18 2556
292 언리얼4 언리얼 머트리얼 노드 예제 - 2D 트랜지션 효과 노드 금별 2022.08.18 2150
291 언리얼4 언리얼 퀵팁 - 2D 컬 노이즈 간단제작방법 금별 2022.08.17 2012
290 유니티 유니티 앰플리파이 쉐이더 - 트라이메쉬형태 방패 스킨 제작방법(중국어) 금별 2022.08.16 2592
289 유니티 유니티 앰플리파이 쉐이더 - 카드 생성 효과 제작방법(중국어) 금별 2022.08.16 3226
288 유니티 유니티 - 바루스 활 공격 효과 모작 제작과정(중국어) 금별 2022.08.11 3823
287 유니티 유니티 앰플리파이 쉐이더 - 노이즈 쉐이더 제작과정(중국어) 금별 2022.08.11 3762
286 유니티 유니티 - 앰플리파이쉐이더 2D 캐릭터 아웃라인 제작과정(중국어) 금별 2022.08.10 3775
285 유니티 유니티 - 방패버프효과 제작과정(중국어) 금별 2022.08.10 3375
284 언리얼4 언리얼 팁 - 라운드 텍스처에 대한 방사형 디스토션 생성 방법 동영상new 댓글+1 금별 2022.07.30 1990
283 유니티 유니티 앰플리파이 쉐이더 - 스크린 이펙트 제작과정(외곽라인이 불타는효과) 금별 2022.07.14 2935
282 유니티 유니티 앰플리파이쉐이더 - 번개 효과 제작방법(중국어) 금별 2022.07.14 2558
281 언리얼 언리얼 팁 - 프로젝트 이름 변경하는법 금별 2022.07.14 7960
280 유니티 유니티 앰플리파이 쉐이더 - 카드 효과(외곽 반사 효과 예제) 금별 2022.07.14 2623
279 언리얼4 나이아가라 - 모듈에 스태틱 스위치를 추가해 옵션기능을 노출하는법 금별 2022.07.14 2129
278 유니티 유니티 - 캐릭터 트레일 제작방법 금별 2022.07.14 2270
277 3D 블랜더 - 노드만을 이용한 원형 화염 제작 금별 2022.07.14 2143
276 언리얼 언리얼 - 노드를 사용한 타일링 텍스쳐 제작방법 사진 금별 2022.07.14 2372
275 언리얼4 언리얼5 - 육각형 트랜지션 머트리얼 효과(노드포함) 금별 2022.07.08 2599
274 2D 섭스턴스 디자인 - VFX Smoke Texture Trail new 금별 2022.07.07 3009
273 유니티 유니티 퀵팁 - 간단한 소팅 이슈 해결법 금별 2022.07.07 1826
272 유니티 유니티 쉐이더 그래프 - 빨려들어가는 이펙트 제작 Almighty Vertex 금별 2022.07.07 3159

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand