This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Coffee.UIEffects; | |
using JetBrains.Annotations; | |
using PrimeTween; | |
using UnityEngine; | |
public static class UIEffectsPrimeTweenExtensions | |
{ | |
#region TONE_FILTER | |
public static Tween ToneIntensity([NotNull] UIEffect effect, float endValue, float duration, Ease ease = Ease.Default, int cycles = 1, CycleMode cycleMode = CycleMode.Restart, float startDelay = 0, float endDelay = 0, bool useUnscaledTime = false) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Coffee.UIEffects; | |
using DG.Tweening; | |
using UnityEngine; | |
public static class UIEffectDOTweenExtensions | |
{ | |
#region TONE_FILTER | |
public static Tween DOToneIntensity(this UIEffect effect, float endValue, float duration) | |
{ |