气泡组件和配置项

This commit is contained in:
2024-09-13 19:39:22 +00:00
parent 4d9de0712e
commit 7adffa4372
73 changed files with 5671 additions and 2047 deletions
+17
View File
@@ -0,0 +1,17 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace AibisDream
{
public class DialogBox : DialogBoxBase
{
[SerializeField] protected GameObject choiceButton;
protected override void LoadChoiceButton()
{
choiceButtonPrefab = choiceButton;
}
}
}