gongyejiqiren/Assets/_Scripts/Application/UI/AZBSTotalOperationPanel.cs

29 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using CG.Framework;
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/*******************************************************************************
*Create By CG
*Function °²×°²¿Êð×Ü¿ØÖÆUI
*******************************************************************************/
namespace ZXK.GYJQR
{
public class AZBSTotalOperationPanel : UIBase
{
protected override void Awake()
{
base.Awake();
}
private void Start()
{
if (GameManager.Instance._CurSystemType == CG.UTility.EnumCtrl.SystemType.AZBS)
{
OperationStepAZBSPanel stepPanelCtrl = UI_Manage.Instance.ShowPanel("OperationStepPanel", Type.GetType("ZXK.GYJQR.OperationStepAZBSPanel"), UIGroup.Main, -1, transform)?.GetComponent<OperationStepAZBSPanel>();
stepPanelCtrl.InitData(GameManager.Instance._DataAZBSHandler.AZBSDataArray, GameManager.Instance._DataAZBSHandler.AZBSDataArray[0]);
}
UI_Manage.Instance.ShowPanel("OperationTopPanel", Type.GetType("ZXK.GYJQR.OperationTopPanel"), UIGroup.Top);
}
}
}