Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

22 lines
383B

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