๐ŸŽฎ Unity Study/Unity

[Unity] Asset, Library ์„ ํƒ ๊ธฐ์ค€

ibelieveinme 2023. 8. 19. 16:28
728x90

Asset ๋ฐ Library ์„ ํƒ ๊ธฐ์ค€์„ ์• ๋‹ˆ๋ฉ”์ด์…˜ Asset ํˆด์ธ DOTween๊ณผ iTween์œผ๋กœ ์•Œ์•„๋ณด์ž.

 

 

DOTween (HOTween v2) | ์• ๋‹ˆ๋ฉ”์ด์…˜ ๋„๊ตฌ | Unity Asset Store

Use the DOTween (HOTween v2) tool from Demigiant on your next project. Find this & more animation tools on the Unity Asset Store.

assetstore.unity.com

 

iTween | ์• ๋‹ˆ๋ฉ”์ด์…˜ ๋„๊ตฌ | Unity Asset Store

Use the iTween tool from Pixelplacement on your next project. Find this & more animation tools on the Unity Asset Store.

assetstore.unity.com


1. ์„ฑ๋Šฅ

FPS(Frame Per Second)๋กœ ๋ดค์„ ๋•Œ DOTween์˜ ์„ฑ๋Šฅ์ด ๊ฐ€์žฅ ์ข‹๋‹ค.

 

์ถœ์ฒ˜) DOTween ๊ณตํ™ˆ

 

DOTween (HOTween v2)

DOTween is a fast, efficient, fully type-safe object-oriented animation engine for Unity, optimized for C# users, free and open-source, with tons of advanced features It is also the evolution of HOTween, my previous Unity tween engine. Compared to it, DOTw

dotween.demigiant.com

 

2. Update ๊ฐ€ ์ž์ฃผ ๋˜๋Š”์ง€

iTween์˜ ๋งˆ์ง€๋ง‰ ์—…๋ฐ์ดํŠธ๋Š” 2019๋…„ 4์›”

Dotween์€ 2023๋…„ 8์›” 11์ผ..!

 

3. ์ฐธ๊ณ ์ž๋ฃŒ๊ฐ€ ๋งŽ์€์ง€

google์— ๊ฒ€์ƒ‰ํ•ด๋ดค์„ ๋•Œ, 2023๋…„ ๊ธฐ์ค€ ํ˜„์žฌ ๊ฐ€์žฅ ๋งŽ์ด ์‚ฌ์šฉํ•˜๊ณ  ์žˆ๋Š” ์• ๋‹ˆ๋ฉ”์ด์…˜ Asset Tool ์€ DOTween ์ž„์„ ์•Œ ์ˆ˜ ์žˆ๋‹ค.

 

4. ์‚ฌ์šฉํ•˜๊ธฐ ์‰ฌ์šด์ง€

// Move a transform to position 1,2,3 in 1 second
transform.DOMove(new Vector3(1,2,3), 1);

// Scale the Y of a transform to 3 in 1 second
transform.DOScaleY(3, 1);

// Pause a transform's tween
transform.DOPause();

DOTween ์ฝ”๋“œ๊ฐ€ ๊ต‰์žฅํžˆ ๊ฐ„๊ฒฐํ•˜๊ณ  ์ง๊ด€์ ์ด๋‹ค. 

728x90