Beispiel #1
0
        protected void PhotonSystemOnPhotonJoinRoomFailedHandler(uFrame.ECS.OnPhotonJoinRoomFailedDispatcher data, LobbyButton source)
        {
            var handler = PhotonSystemOnPhotonJoinRoomFailedHandlerInstance;

            handler.System = this;
            handler.Event  = data;
            handler.Source = source;
            StartCoroutine(handler.Execute());
        }
Beispiel #2
0
        protected void PhotonSystemOnPhotonJoinRoomFailedFilter(uFrame.ECS.OnPhotonJoinRoomFailedDispatcher data)
        {
            var SourceLobbyButton = LobbyButtonManager[data.EntityId];

            if (SourceLobbyButton == null)
            {
                return;
            }
            this.PhotonSystemOnPhotonJoinRoomFailedHandler(data, SourceLobbyButton);
        }