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



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

금별 0 1,641 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


번호 포토 분류 제목 글쓴이 날짜 조회
648 언리얼4 언리얼4 - 블랜더를 활용한 지형 버텍스 옵셋 이펙트 팁 금별 2019.11.19 1660
647 언리얼4 언리얼4 머터리얼 튜토리얼 - Procedural 노이즈제작 금별 2020.03.26 1659
646 유니티 유니티 HDRP에서 소규모 고품질의 영상 제작 - Unite Tokyo 2019 금별 2020.03.29 1650
열람중 유니티 유니티 버텍스 옵셋 효과 예제 Juane Gray 금별 2019.08.20 1642
644 언리얼4 언리얼4 머터리얼 팁 - 머터리얼만으로 밴드형태 구현하기 금별 2020.03.26 1640
643 언리얼4 언리얼4 팁 - UNREAL 4 TIPS AND TRICKS 금별 2019.12.29 1638
642 언리얼4 언리얼5 - 기초 카오스(파괴/Destruction) 튜토리얼 금별 2021.09.27 1637
641 언리얼4 언리얼4 머터리얼 팁 - 포스트 프로세스에서 색상분리하기 댓글+1 금별 2018.12.19 1636
640 유니티 유니티 쉐이더 그래프 - Cuphead Fire 금별 2020.10.20 1629
639 언리얼4 언리얼4 - 버블쉐이더 금별 2019.08.20 1624
638 2D 스테이블 디퓨전을 활용한 AI 시퀀스 텍스쳐 제작방법 금별 2023.03.07 1623
637 유니티 유니티 앰플리파이 쉐이더 - 노이즈 쉐이더 제작과정(중국어) 금별 2022.08.11 1622
636 유니티 유니티 쉐이더 - 오브젝트 표면 파티클화 효과 제작방법(쉐이더코드포함) 금별 2022.08.18 1620
635 유니티 유니티 쉐이더 그래프 - Weaving Ring Tutorial 2 댓글+1 금별 2019.08.12 1613
634 유니티 유니티 앰플리파이 쉐이더 - 나비 효과 구현하기 금별 2022.08.25 1605
633 3D [아르카도님 번역]【CAPCOM RE 2019】데빌메이크라이5에 VFX해설 금별 2020.02.10 1597
632 유니티 [NDC 2018] 게임 이펙트를 시작하는 법 금별 2019.07.18 1593
631 유니티 유니티 - Christmas Lootbox 이펙트 / 제작과정 사진 금별 2021.02.04 1588
630 3D 3DS 맥스 팁 - UV로 부터 버택스 컬러 그라디언트 활용법 금별 2020.11.17 1588
629 유니티 유니티 - 바닥 크랙/흩날림 효과 제작과정(중국어) 금별 2022.02.17 1583
628 언리얼4 배수구 유체 간단 튜토리얼 금별 2018.08.27 1577
627 언리얼4 언리얼4 - 쇼크웨이브 / 그라운드 이펙트 제작과정 댓글+1 금별 2021.12.02 1577

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand