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



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

금별 0 3,123 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


번호 포토 분류 제목 글쓴이 날짜 조회
227 언리얼4 언리얼 에셋 - Node Graph Assistant 금별 2022.02.11 2097
226 유니티 유니티 쉐이더 그래프 - Eroision 효과 제작과정 금별 2022.02.11 2359
225 언리얼4 언리얼 - 다양한 도형 머터리얼 제작방법 금별 2022.02.08 3807
224 언리얼4 언리얼팁 - 다이아몬드 게이지 머트리얼 제작방법 금별 2022.01.29 3272
223 유니티 유니티 VFX그래프 - 패스를 따라 움직이는 파티클 제작법 금별 2022.01.26 3670
222 언리얼4 언리얼 - distance와 step을 활용한 원 그리기 금별 2022.01.25 3484
221 언리얼4 언리얼 - 게이지 머트리얼 예제 금별 2022.01.25 2577
220 언리얼4 언리얼 - DotPatternFade Material 예제 금별 2022.01.25 2121
219 언리얼4 언리얼4 나이아가라 - Stylized 리본 쉐이더 제작방법 금별 2022.01.24 3033
218 언리얼4 언리얼 - 구형 디졸브 폭파 제작방법 금별 2022.01.24 2108
217 언리얼4 언리얼4 - 페이크 색수차 효과(facking chromatic aberration) 금별 2022.01.24 3270
216 유니티 유니티 - 수속성 타격체 효과 제작과정 금별 2022.01.12 2445
215 유니티 유니티 - 꿀렁거리는 촉수 쉐이더 제작과정 금별 2021.12.30 2669
214 유니티 유니티 - 달 움직임 쉐이더 표현 금별 2021.12.30 2808
213 언리얼4 언리얼4 - Particle Module : Color 한글설명 금별 2021.12.25 2026
212 2D 애프터이펙트 - 화염 시퀀스 효과 제작 금별 2021.12.23 6840
211 언리얼4 언리얼4 - 쇼크웨이브 / 그라운드 이펙트 제작과정 2 금별 2021.12.20 2331
210 2D 섭스턴스 디자인/언리얼4 - 움푹 패인 데칼 제작 금별 2021.12.20 2530
209 언리얼4 언리얼4 - 방사형 그라디언트와 외적 사용한 굴절링 제작노드 예제 금별 2021.12.14 2683
208 2D 애프터이펙트 - 루핑 빔 텍스쳐 제작방법(중국어) 금별 2021.12.14 2363
207 2D 애프터이펙트 - 원형 검기 텍스쳐 제작방법(중국어) 금별 2021.12.14 5335
206 유니티 유니티 - 검기 이펙트 기본부터 캐릭터에 붙이는 전체제작과정(중국어버젼) 금별 2021.12.12 2749

 

Banner
 
Facebook Twitter GooglePlus KakaoStory NaverBand