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



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

금별 0 4,891 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


번호 포토 분류 제목 글쓴이 날짜 조회
871 언리얼4 Magical Potion Unreal Engine 5.4 Niagara | For Patreon ashif 06.07 11
870 언리얼4 언리얼 - 볼류메트릭 RayMarching 머티리얼 생성과정(한글자막) 금별 06.07 13
869 언리얼4 언리얼 - 나이아가라 활용 나선형 offset 흡수 효과 제작과정(한글자막) 금별 06.07 19
868 2D 섭스턴스디자인 - Hammer Impact Trail Mask[WispySmok] 제작과정(한글자막) 금별 06.05 29
867 2D 섭스턴스디자인 - Hammer Impact Trail Mask[해머 트레일 마스크] 제작과정(한글자막) 금별 06.05 19
866 유니티 유니티 VFX 그래프 - 간단한 파이어볼 발사체 이펙트 제작과정(한글자막) 금별 06.05 26
865 언리얼4 린반의 게임 이펙트 [사소한라이브 기본검기요소 외 - 6.5일자] 금별 06.05 24
864 유니티 유니티 - 무기 VFX 효과 예제 금별 06.04 70
863 언리얼4 언리얼5 - Nanite Displacement 및 Glint가 포함된 사실적 눈셰이더 제작과정(한글자막) 금별 06.04 47
862 언리얼4 언리얼 포트나이트 에디터 개발자문서 - 머티리얼 이펙트 금별 06.04 43
861 언리얼4 언리얼5 - 지형 상호작용 무료 플러그인 금별 05.30 81
860 언리얼4 언리얼 - 커브의 움직임 사용 노드 미리보기 예제 금별 05.30 69
859 언리얼4 언리얼5 - 무한 리플 노드 예제 금별 05.30 92
858 언리얼4 린반의 게임 이펙트 [사소한라이브-빛을 표현할때 중요한것외] 금별 05.30 80
857 언리얼4 언리얼5 - 수직 형태 빔 VFX 제작과정(한글자막) 금별 05.29 101
856 언리얼4 언리얼5 - Power 노드 이해하기(린반의 이펙트제작팁) 금별 05.28 76
855 언리얼4 언리얼 - 매우 간단한 UV 트위스트 제작노드 금별 05.28 78
854 2D 애펙 - 지브리 스타일의 폭포 간단제작과정(레이어별 영상) 금별 05.28 77
853 언리얼4 언리얼 - 5.4 신기능 렌더 그래프 설명(한글자막) 동영상링크new 금별 05.28 86
852 언리얼4 언리얼5 나이아가라 - 기본 웨이브 아우라 효과 제작과정(한글자막) 금별 05.24 140
851 언리얼4 언리얼5 - 플라즈마 에너지 쉴드 제작과정(한글자막) 금별 05.24 112
850 언리얼4 언리얼5/후디니 - 나이아가라를 활용한 연막탄 VFX 제작과정(한글자막) 금별 05.21 125

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand