選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。

ActionFadeIn.cs 379B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. class ActionFadeIn : ActionFadeTo
  5. {
  6. public ActionFadeIn(float tgtDuration)
  7. : base(1, tgtDuration)
  8. {
  9. }
  10. public override Action clone()
  11. {
  12. return new ActionFadeIn(duration);
  13. }
  14. public override Action reverse()
  15. {
  16. return new ActionFadeIn(duration);
  17. }
  18. }