OnNewZoneObject.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using UnityEngine;
  2. namespace ET.Client
  3. {
  4. [Event(SceneType.Current)]
  5. public class OnNewZoneObject : AEvent<EventType.OnNewZoneObject>
  6. {
  7. protected override async ETTask Run(Scene scene, EventType.OnNewZoneObject args)
  8. {
  9. var bo = args.Object;
  10. if(bo is BattleUnit)
  11. {
  12. await CreatUnitModel(bo as BattleUnit);
  13. }
  14. else
  15. {
  16. Log.Error("unknow new object");
  17. }
  18. }
  19. private async ETTask CreatUnitModel(BattleUnit unit)
  20. {
  21. var zu = unit.ZUnit;
  22. var handle = await YooAssetProxy.LoadAssetAsync<GameObject>($"Unit_{zu.Info.FileName}");
  23. var prefab = handle.GetAssetObject<GameObject>();
  24. GameObject go = UnityEngine.Object.Instantiate(prefab, GlobalViewComponent.Instance.Unit, true);
  25. go.transform.position = new Vector3(0, 0, 0);
  26. go.transform.rotation = Quaternion.identity;
  27. ModelViewComponent.Instance.AddChildWithId<AnimatorComponent, GameObject>(unit.Id, go, true);
  28. if (unit is BattleActor)
  29. {
  30. //相机跟随主角
  31. //ModelViewComponent.Instance.AddComponent<CameraComponent>().Unit = unit;
  32. //固定视角相机
  33. var camera = Camera.main;
  34. var pos = go.transform.position;
  35. camera.transform.position = new Vector3(pos.x, 7, pos.z - 15);
  36. }
  37. }
  38. }
  39. }