17 lines
443 B
C#
17 lines
443 B
C#
using AibisDream.Kit;
|
|
|
|
namespace AibisDream
|
|
{
|
|
public class OutsideCenter : Singleton<OutsideCenter>
|
|
{
|
|
public BubbleSlotGroup bubbleSlotGroup;
|
|
|
|
public override void OnSingletonInit()
|
|
{
|
|
// 加载气泡
|
|
// DialogCanvasManager.Instance.SwitchDialogView(DialogViewType.StandardBubble);
|
|
// BubbleGroup.Instance.LoadBubbles(bubbleSlotGroup.CollectData());
|
|
}
|
|
}
|
|
}
|