dotween 3

DOTween 트윈 이벤트 메서드와 활용

DOTween에서는 DoMove, DoJump 같은 이동, 애니메이션 효과를 위한 메서드 뿐만 아니라 이를 보조할 다른 메서드들도 제공한다. 대표적으로 OnStart, OnPlay, OnComplete, OnKill이 있다.private Tween MoveToPoint(Vector3 p_pointPosition){ return transform.DOMove(p_pointPosition, _moveDuration) .OnStart(MoveStart) .OnPlay(MovePlay) .OnComplete(MoveEnd) .OnKill(MoveKill);}private void MoveStart(){ Debug.Log("Move Start");}pr..

TIL 2025.04.21

DOTween의 Sequence

https://jooglorystar98.tistory.com/89 DOTween의 기본 메서드DOTween은 Tween기반으로 애니메이션을 관리할 수 있는 도구이며, 유니티 애셋 스토어에서 찾을 수 있다. https://assetstore.unity.com/packages/tools/animation/dotween-hotween-v2-27676 DOTween (HOTween v2) | 애니메이션jooglorystar98.tistory.com DOTween은 유니티에서 Tween기반으로 애니메이션을 관리할 수 있는 도구이며, 이동이나, 회전, 크기변화와 같은 간단한 이동을 DOTween에서 제공하는 메서드들로 구현할 수 있다. DOTween에서는 그리고 이러한 메서드들을 타임라인 관리할 수 있는 방법이 ..

TIL 2025.04.03

DOTween의 기본 메서드

DOTween은 Tween기반으로 애니메이션을 관리할 수 있는 도구이며, 유니티 애셋 스토어에서 찾을 수 있다. https://assetstore.unity.com/packages/tools/animation/dotween-hotween-v2-27676 DOTween (HOTween v2) | 애니메이션 도구 | Unity Asset StoreUse the DOTween (HOTween v2) tool from Demigiant on your next project. Find this & more animation tools on the Unity Asset Store.assetstore.unity.com 자세한 내용은 DOTween 문서에서 확인할 수 있다.https://dotween.demigiant..

TIL 2025.04.02