選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
|
- using System;
- using System.Collections.Generic;
- using UnityEngine;
-
- class ActionFadeOut : ActionFadeTo
- {
-
- public ActionFadeOut(float tgtDuration)
- : base(0, tgtDuration)
- {
- }
-
- public override Action clone()
- {
- return new ActionFadeOut(duration);
- }
-
- public override Action reverse()
- {
- return new ActionFadeOut(duration);
- }
- }
|