유니티 버텍스 옵셋 효과 예제 Juane Gray



유니티 버텍스 옵셋 효과 예제 Juane Gray

금별 0 1,830 2019.08.20 23:22

 

So, here I am again my goal is to make guts fall from a zombie character I have laying around, and with it comes some squash and stretch guts and organs that fall out of it.

How am I going to do it? I have no clue. I guess you and me will find out!

Update -1

 

 

So to start off I watched a bunch of videos, messed around with a lot of shader things (rotate about axis) (could not get it to work) so I tried another method. this time I started from scratch.

So I came up with the idea to pass the collision point of the object into a space local to the object.

 

 

Something like this or similar, and I wanted to get the result of this

 

 

Which I somehow of a miracle made happen:

 

 

and with that comes the shader: although I could not get rotation to work it’s definitely a step in the right direction!

 

 

So today I managed to get rotation working, by simply changing two inputs and converting to world/object space! I am so blind!

 

 

Here is what the shader looks like now:

 

 

 

Code related:

private void Start()
{
    rend = GetComponent<Renderer>();
    RB = GetComponent<Rigidbody>();
}

private void Update()
{
    rend.material.SetVector("_ContactPos", toPoint);
    if (!colliding && collisionPoint != Vector3.zero)
    {
        spring2 = 0f;
        spring += Time.deltaTime;
        toPoint = Vector3.Lerp(collisionPoint, Vector3.zero, spring);
    }

    if (colliding)
    {
        spring2 += Time.deltaTime;
        toPoint = Vector3.Lerp(toPoint, collisionPoint, spring2);
        if (toPoint == collisionPoint) { spring2 = 0f; }
    }
}


public void OnCollisionStay(Collision collision)
{
    colliding = true;
    ContactPoint contact = collision.GetContact(0);
    point.position = contact.point;
    collisionPoint = -point.gameObject.transform.localPosition;
    Vector3 dir = transform.position - collisionPoint;
    directionPoint = dir.magnitude;
}

public void OnCollisionExit(Collision collision)
{
    spring = 0;
    colliding = false;
}
}

Comments


번호 포토 분류 제목 글쓴이 날짜 조회
232 언리얼4 언리얼 - WPO를 활용한 각면의 회전 효과 금별 2022.03.14 1931
231 유니티 유니티 쉐이더 그래프 - Remapping Tech Art Toolbox 사진동영상new 금별 2022.03.04 2011
230 유니티 유니티 - 물줄기 스킬효과/작은 폭발 제작과정(중국어) 금별 2022.02.24 2195
229 유니티 유니티 - 바닥 크랙/흩날림 효과 제작과정(중국어) 금별 2022.02.17 1772
228 언리얼4 언리얼 - 디졸브 머트리얼 노드 예제 금별 2022.02.17 1847
227 언리얼4 언리얼 에셋 - Node Graph Assistant 금별 2022.02.11 1274
226 유니티 유니티 쉐이더 그래프 - Eroision 효과 제작과정 금별 2022.02.11 1391
225 언리얼4 언리얼 - 다양한 도형 머터리얼 제작방법 금별 2022.02.08 2559
224 언리얼4 언리얼팁 - 다이아몬드 게이지 머트리얼 제작방법 금별 2022.01.29 2107
223 유니티 유니티 VFX그래프 - 패스를 따라 움직이는 파티클 제작법 금별 2022.01.26 2309
222 언리얼4 언리얼 - distance와 step을 활용한 원 그리기 금별 2022.01.25 2212
221 언리얼4 언리얼 - 게이지 머트리얼 예제 금별 2022.01.25 1604
220 언리얼4 언리얼 - DotPatternFade Material 예제 금별 2022.01.25 1295
219 언리얼4 언리얼4 나이아가라 - Stylized 리본 쉐이더 제작방법 금별 2022.01.24 2094
218 언리얼4 언리얼 - 구형 디졸브 폭파 제작방법 금별 2022.01.24 1275
217 언리얼4 언리얼4 - 페이크 색수차 효과(facking chromatic aberration) 금별 2022.01.24 1941
216 유니티 유니티 - 수속성 타격체 효과 제작과정 금별 2022.01.12 1481
215 유니티 유니티 - 꿀렁거리는 촉수 쉐이더 제작과정 금별 2021.12.30 1637
214 유니티 유니티 - 달 움직임 쉐이더 표현 금별 2021.12.30 1804
213 언리얼4 언리얼4 - Particle Module : Color 한글설명 금별 2021.12.25 1140
212 2D 애프터이펙트 - 화염 시퀀스 효과 제작 금별 2021.12.23 5117
211 언리얼4 언리얼4 - 쇼크웨이브 / 그라운드 이펙트 제작과정 2 금별 2021.12.20 1431

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand