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



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

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


번호 포토 분류 제목 글쓴이 날짜 조회
1179 언리얼4 Unleash the Dark: Crafting a Black Smoke Character with Unreal Engine ashif 06.02 67
1178 언리얼4 언리얼5 - Sci-fi 격자 지형 균열 VFX 제작과정(한글자막) 금별 05.30 142
1177 언리얼4 언리얼5 - 레이저 반사 VFX 제작과정(한글자막) 금별 05.30 109
1176 유니티 유니티/맥스/포토샵 - 간단한 큐브 애니메이션 효과 제작예제(한글자막) 금별 05.30 99
1175 언리얼4 Cursed Mask FX: Crafting Skull, Glowing Rings & Red Smoke in Unreal Engine 5 Niagara ashif 05.29 106
1174 언리얼4 Transform Basic Fire into Epic Flames in Unreal Engine 5 Niagara ashif 05.28 107
1173 언리얼4 Step-by-Step Guide: Healing Aura Effect in Unreal Engine 5 Niagara ashif 05.27 113
1172 언리얼4 Master Blood Eruptions in UE5: A Step-by-Step VFX Guide ashif 05.26 111
1171 언리얼4 언리얼 - 1,2개의 축을 제어하는 월드 기반 회전 예제 금별 05.26 113
1170 유니티 유니티 - 그라디언트 맵으로 실시간 VFX 제작하기(한글자막) 금별 05.26 138
1169 언리얼4 Create Mesmerizing Magnetic Fields in UE5 Niagara: A Step-by-Step Guide ashif 05.23 144
1168 3D 3DS Max - 직각 Sword Slash 메쉬 제작방법 금별 05.23 138
1167 언리얼4 Step-by-Step Guide to Dynamic Trails in UE5: Elevate Your Game VFX! ashif 05.22 159
1166 언리얼4 언리얼/후디니 - 코페르니쿠스 시뮬레이션 데칼을 언리얼에서 활용하는법(한글자막) 금별 05.21 177
1165 언리얼4 언리얼5 - 죽음 디졸브 이펙트 Niagara SkeletalMesh Location 사용 금별 05.21 168
1164 언리얼4 후디니/언리얼 - 유체 및 불규칙한 동적 오브젝트를 UE로 내보내는 두 가지 방법 – ABC와 버텍스 애니메이션 금별 05.20 175
1163 유니티 유니티 - 음률 리듬 VFX 제작 가이드(한글자막) 금별 05.20 180
1162 유니티 유니티 - 별빛 VFX: 단계별 제작 가이드(한글자막) 금별 05.20 202
1161 유니티 유니티 - Ice Cone과 Spike 제작 가이드(한글자막) 금별 05.20 175
1160 유니티 유니티 - 입체 오각형/육각형 텍스처와 모델 제작 가이드(자막) 금별 05.20 159
1159 언리얼4 언리얼5 - Burn Transition Material 예제 및 노드 금별 05.18 174
1158 언리얼4 언리얼5 - 커스텀 노드를 활용한 줌블러 예제 및 코드 금별 05.18 176

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand