「Unity/Csharp/DoTween」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→dotweenとは) |
(→インストール) |
||
行7: | 行7: | ||
#unityassetsからdotweenを検索して、 | #unityassetsからdotweenを検索して、 | ||
#dotweenのfree ( https://assetstore.unity.com/packages/tools/animation/dotween-hotween-v2-27676 ) をダウンロード | #dotweenのfree ( https://assetstore.unity.com/packages/tools/animation/dotween-hotween-v2-27676 ) をダウンロード | ||
+ | #installし、 | ||
+ | #importする | ||
+ | #OpenDoTweenUtilityPanelを開き | ||
+ | #SetupDotweenボタンを押して、Applyを押す。 | ||
+ | |||
+ | ==サンプル== | ||
+ | using DG.Tweening; | ||
+ | using UnityEngine; | ||
+ | public class SampleScene : MonoBehaviour | ||
+ | { | ||
+ | void Start() | ||
+ | { | ||
+ | GameObject.Find("Cube").transform.DOMove(new Vector3(5f, 0f, 0f), 3f); | ||
+ | } | ||
+ | } |
2021年8月2日 (月) 23:11時点における版
dotweenとは
アニメーションライブラリ
参考:https://qiita.com/broken55/items/df152c061da759ad1471
インストール
- unityassetsからdotweenを検索して、
- dotweenのfree ( https://assetstore.unity.com/packages/tools/animation/dotween-hotween-v2-27676 ) をダウンロード
- installし、
- importする
- OpenDoTweenUtilityPanelを開き
- SetupDotweenボタンを押して、Applyを押す。
サンプル
using DG.Tweening; using UnityEngine; public class SampleScene : MonoBehaviour {
void Start() { GameObject.Find("Cube").transform.DOMove(new Vector3(5f, 0f, 0f), 3f); }
}