23 lines
731 B
C#
23 lines
731 B
C#
|
|
/*! \cond PRIVATE */
|
||
|
|
using System;
|
||
|
|
|
||
|
|
// ReSharper disable once CheckNamespace
|
||
|
|
namespace DarkTonic.MasterAudio {
|
||
|
|
[Serializable]
|
||
|
|
// ReSharper disable once CheckNamespace
|
||
|
|
public class GroupFadeInfo {
|
||
|
|
public MasterAudioGroup ActingGroup;
|
||
|
|
public string NameOfGroup;
|
||
|
|
public float StartVolume;
|
||
|
|
public float TargetVolume;
|
||
|
|
public float StartTime;
|
||
|
|
public float CompletionTime;
|
||
|
|
public bool IsActive = true;
|
||
|
|
public bool WillStopGroupAfterFade = false;
|
||
|
|
public bool WillResetVolumeAfterFade = false;
|
||
|
|
// ReSharper disable once InconsistentNaming
|
||
|
|
// ReSharper disable once RedundantNameQualifier
|
||
|
|
public System.Action completionAction;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
/*! \endcond */
|