ComAIUnit.ObjectEvent.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using CommonAI.Zone;
  2. using UnityEngine;
  3. using CommonAIClient.Unity.Utils;
  4. namespace CommonAIClient.Unity.Battle
  5. {
  6. public partial class ComAIUnit
  7. {
  8. protected override void RegistAllObjectEvent()
  9. {
  10. base.RegistAllObjectEvent();
  11. RegistObjectEvent<UnitHitEvent>(ObjectEvent_UnitHitEvent);
  12. RegistObjectEvent<UnitDoActionEvent>(ObjectEvent_UnitDoActionEvent);
  13. }
  14. protected virtual void ObjectEvent_UnitHitEvent(UnitHitEvent ev)
  15. {
  16. Quaternion rot = ObjectRoot.Rotation();
  17. ComAICell launcher = BattleScene.GetBattleObject(ev.senderId);
  18. if (launcher != null && launcher != this)
  19. {
  20. rot = launcher.EffectRoot.Rotation();
  21. Vector3 forward = EffectRoot.Position() - launcher.EffectRoot.Position();
  22. if (forward != Vector3.zero)
  23. {
  24. rot = Quaternion.LookRotation(forward);
  25. }
  26. }
  27. PlayEffect(ev.effect, ObjectRoot.Position(), rot);
  28. }
  29. protected virtual void ObjectEvent_UnitDoActionEvent(UnitDoActionEvent ev)
  30. {
  31. PlayAnim(ev.ActionName, true);
  32. }
  33. }
  34. }