using System; using UnityEngine; namespace ET.Client { [UIEvent(UIType.UICustomerService)] public class UICustomerServiceEvent : AUIEvent { public override async ETTask<UI> OnCreate(UIComponent uiComponent, UILayer uiLayer, params object[] param) { await ETTask.CompletedTask; await uiComponent.DomainScene().GetComponent<ResourcesLoaderComponent>().LoadAsync(UIType.UICustomerService.StringToAB()); GameObject bundleGameObject = (GameObject) ResourcesComponent.Instance.GetAsset(UIType.UICustomerService.StringToAB(), UIType.UICustomerService); GameObject gameObject = UnityEngine.Object.Instantiate(bundleGameObject, UIEventComponent.Instance.GetLayer((int)uiLayer)); UI ui = uiComponent.AddChild<UI, string, GameObject>(UIType.UICustomerService, gameObject); ui.AddComponent<UICustomerServiceComponent>(); return ui; } public override void OnRemove(UIComponent uiComponent) { ResourcesComponent.Instance.UnloadBundle(UIType.UICustomerService.StringToAB()); } } }