Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.3 KB

File metadata and controls

42 lines (25 loc) · 1.3 KB

Edgegap allocator configuration

Get started with Edgegap's Documentation.

Read more about switching from Multiplay..

Required secrets

Add these secrets in the Unity Dashboard under Administration > Secrets:

  • EDGEGAP_API_TOKEN - Your Edgegap API token.

Find your token in the Edgegap Console.

Required code changes

Edit Project/EdgegapAllocator.cs and update these constants:

ApplicationName (line 34)

private const string ApplicationName = "MyApp"; // TODO: Replace with actual application name

Replace with your Edgegap application name from the Applications List.

VersionName (line 35)

private const string VersionName = "MyVersion"; // TODO: Replace with actual version name

Replace with your Edgegap application's version name you want to use.

PortName (line 36)

private const string PortName = "gameport"; // TODO: Replace with actual port name

Replace with your Edgegap application version's port name that will be used for players to connect.