主界面添加,许多bug修复。祝贺黑盒1如期开始
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using UnityEngine;
|
||||
using UnityEngine.Audio;
|
||||
using System.Collections.Generic;
|
||||
|
||||
[CreateAssetMenu(fileName = "UISoundConfig", menuName = "UI/UISoundConfig")]
|
||||
public class UISoundConfig : ScriptableObject
|
||||
{
|
||||
public AudioMixerGroup outputGroup;
|
||||
|
||||
[System.Serializable]
|
||||
public class ButtonSoundEntry
|
||||
{
|
||||
public UIButtonType type;
|
||||
public AudioClip hoverClip;
|
||||
public AudioClip clickClip;
|
||||
}
|
||||
|
||||
public List<ButtonSoundEntry> soundTable = new List<ButtonSoundEntry>();
|
||||
}
|
||||
Reference in New Issue
Block a user