Created
February 12, 2017 12:44
-
-
Save arumani/ced0b0f9260c0276dfd813fb5e902789 to your computer and use it in GitHub Desktop.
DOTWeen関連メモ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ふわっと出てふわっと消える | |
DOTween.Sequence() | |
.Append(img.DOFade(1.0f, 0.2f).SetEase(Ease.Linear)) | |
.AppendInterval(1.0f) | |
.Append(img.DOFade(0, 0.8f).SetEase(Ease.InQuint)) | |
.OnComplete(() => { | |
img.gameObject.SetActive(false); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment