1234567891011121314151617181920212223242526272829 |
- using UnityEngine;
- namespace ET.Client
- {
- [Event(SceneType.Current)]
- public class OnDestroyZoneObject : AEvent<EventType.OnDestroyZoneObject>
- {
- protected override async ETTask Run(Scene scene, EventType.OnDestroyZoneObject args)
- {
- await DestroyUnitModel(args.Object);
- }
- private async ETTask DestroyUnitModel(BattleObject unit)
- {
- ModelViewComponent.Instance.RemoveChild(unit.Id);
- if (unit is BattleActor)
- {
- //相机跟随主角
- //ModelViewComponent.Instance.AddComponent<CameraComponent>().Unit = unit;
- //固定视角相机
- var camera = Camera.main;
- //camera.transform.position = new Vector3(unit.Position.x, 7, unit.Position.z - 15);
- }
- await ETTask.CompletedTask;
- }
- }
- }
|