Skip to main content

Put it all together - Browse dedicated server joinable sessions - (Unity module)

Last updated on March 22, 2024

Connect the UI to the find and display available sessions

  1. Open the project in the Unity Editor and then open the BrowseMatchMenuCanvas_Starter.cs script. You will call the AccelByte Gaming Services (AGS) Game SDK API to browse match sessions via the wrapper class. Modify BrowseMatchSession function as follows:

    private void BrowseMatchSession()
    {
    Reset();
    browseMatchSessionWrapper_Starter.BrowseMatch(OnBrowseMatchSessionFinished);
    ShowLoading("Getting Match Sessions...", CancelBrowseMatchSession);
    }

Resources