UISettingEvent.cs 1.1 KB

12345678910111213141516171819202122232425
  1. using System;
  2. using UnityEngine;
  3. namespace ET.Client
  4. {
  5. [UIEvent(UIType.UISetting)]
  6. public class UISettingEvent : AUIEvent
  7. {
  8. public override async ETTask<UI> OnCreate(UIComponent uiComponent, UILayer uiLayer, params object[] param)
  9. {
  10. await ETTask.CompletedTask;
  11. await uiComponent.DomainScene().GetComponent<ResourcesLoaderComponent>().LoadAsync(UIType.UISetting.StringToAB());
  12. GameObject bundleGameObject = (GameObject) ResourcesComponent.Instance.GetAsset(UIType.UISetting.StringToAB(), UIType.UISetting);
  13. GameObject gameObject = UnityEngine.Object.Instantiate(bundleGameObject, UIEventComponent.Instance.GetLayer((int)uiLayer));
  14. UI ui = uiComponent.AddChild<UI, string, GameObject>(UIType.UISetting, gameObject);
  15. ui.AddComponent<UISettingComponent>(false,param);
  16. return ui;
  17. }
  18. public override void OnRemove(UIComponent uiComponent)
  19. {
  20. ResourcesComponent.Instance.UnloadBundle(UIType.UISetting.StringToAB());
  21. }
  22. }
  23. }