You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace MoreMountains.Tools
|
|
{
|
|
/// <summary>
|
|
/// This event will let you pause
|
|
///
|
|
/// Example : MMSoundManagerSoundFadeEvent.Trigger(33, 2f, 0.3f, new MMTweenType(MMTween.MMTweenCurve.EaseInElastic));
|
|
/// will fade the sound with an ID of 33 towards a volume of 0.3, over 2 seconds, on an elastic curve
|
|
/// </summary>
|
|
public struct MMSoundManagerSoundFadeEvent
|
|
{
|
|
public enum Modes { PlayFade, StopFade }
|
|
|
|
/// whether we are fading a sound, or stopping an existing fade
|
|
public Modes Mode;
|
|
/// the ID of the sound to fade
|
|
public int SoundID;
|
|
/// the duration of the fade (in seconds)
|
|
public float FadeDuration;
|
|
/// the volume towards which to fade this sound
|
|
public float FinalVolume;
|
|
/// the tween over which to fade this sound
|
|
public MMTweenType FadeTween;
|
|
|
|
|
|
|
|
public MMSoundManagerSoundFadeEvent(Modes mode, int soundID, float fadeDuration, float finalVolume, MMTweenType fadeTween)
|
|
{
|
|
Mode = mode;
|
|
SoundID = soundID;
|
|
FadeDuration = fadeDuration;
|
|
FinalVolume = finalVolume;
|
|
FadeTween = fadeTween;
|
|
}
|
|
|
|
static MMSoundManagerSoundFadeEvent e;
|
|
public static void Trigger(Modes mode, int soundID, float fadeDuration, float finalVolume, MMTweenType fadeTween)
|
|
{
|
|
e.Mode = mode;
|
|
e.SoundID = soundID;
|
|
e.FadeDuration = fadeDuration;
|
|
e.FinalVolume = finalVolume;
|
|
e.FadeTween = fadeTween;
|
|
MMEventManager.TriggerEvent(e);
|
|
}
|
|
}
|
|
} |