2025-07-21 17:41:15 +08:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
namespace GameWrapper.SimpleAudio
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CmpSimpleAudioConfig : MonoBehaviour
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public AnimationCurve m_volumeCurve = AnimationCurve.EaseInOut(0, 1, 30, 0);
|
|
|
|
|
|
|
|
|
|
|
|
public float m_cameraCenterOffset = 36f;
|
2025-07-21 18:19:16 +08:00
|
|
|
|
|
2025-07-22 18:17:18 +08:00
|
|
|
|
public float m_minSampleInterval = 0.2f;
|
2025-07-21 17:41:15 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|