SessionPlayerComponentSystem.cs 614 B

12345678910111213141516171819202122
  1. 
  2. namespace ET.Server
  3. {
  4. public static class SessionPlayerComponentSystem
  5. {
  6. public class SessionPlayerComponentDestroySystem: DestroySystem<SessionPlayerComponent>
  7. {
  8. protected override void Destroy(SessionPlayerComponent self)
  9. {
  10. // 发送断线消息
  11. ActorLocationSenderComponent.Instance?.Send(self.PlayerId, new G2M_SessionDisconnect());
  12. self.DomainScene().GetComponent<PlayerComponent>()?.Remove(self.PlayerId);
  13. }
  14. }
  15. public static Player GetMyPlayer(this SessionPlayerComponent self)
  16. {
  17. return self.DomainScene().GetComponent<PlayerComponent>().Get(self.PlayerId);
  18. }
  19. }
  20. }