Skip to content

Instantly share code, notes, and snippets.

@arumani
Created February 12, 2017 12:44
Show Gist options
  • Save arumani/ced0b0f9260c0276dfd813fb5e902789 to your computer and use it in GitHub Desktop.
Save arumani/ced0b0f9260c0276dfd813fb5e902789 to your computer and use it in GitHub Desktop.
DOTWeen関連メモ
// ふわっと出てふわっと消える
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