Пример #1
0
 protected void LobbySystemPointerClickHandler(uFrame.ECS.PointerClickDispatcher data, LobbyButton source) {
     var handler = LobbySystemPointerClickHandlerInstance;
     handler.System = this;
     handler.Event = data;
     handler.Source = source;
     StartCoroutine(handler.Execute());
 }
Пример #2
0
 protected void PhotonSystemOnJoinedRoomHandler(uFrame.ECS.OnJoinedRoomDispatcher data, LobbyButton source) {
     var handler = PhotonSystemOnJoinedRoomHandlerInstance;
     handler.System = this;
     handler.Event = data;
     handler.Source = source;
     StartCoroutine(handler.Execute());
 }
Пример #3
0
        protected void LobbySystemPointerClickHandler(uFrame.ECS.PointerClickDispatcher data, LobbyButton source)
        {
            var handler = LobbySystemPointerClickHandlerInstance;

            handler.System = this;
            handler.Event  = data;
            handler.Source = source;
            StartCoroutine(handler.Execute());
        }
Пример #4
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());
        }