using UnityEngine; namespace AibisDream { public class DialogBox : DialogBoxBase { [SerializeField] protected GameObject choiceButton; protected override void OnAwake() { // 初始化选择按钮 choiceButtonPrefab = choiceButton; } } }