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.

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