You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

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. }