Ingen beskrivning
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.

ToggleTestImageHook.cs 437B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. public class ToggleTestImageHook : Image
  6. {
  7. public float durationTween;
  8. public override void CrossFadeColor(Color targetColor, float duration, bool ignoreTimeScale, bool useAlpha, bool useRGB)
  9. {
  10. durationTween = duration;
  11. base.CrossFadeColor(targetColor, duration, ignoreTimeScale, useAlpha, useRGB);
  12. }
  13. }