From 18da3beee9ace86436a05eef6ce8de046c123777 Mon Sep 17 00:00:00 2001 From: Dominick Schroer Date: Mon, 2 Feb 2026 13:35:07 -0700 Subject: [PATCH 1/2] docs: add instructions for Unity based deployments --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 80b7cc9..9fefd13 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ Select the hosting provider that you want to use under `modules/` - **MultiplayAllocator** - Unity Multiplay integration - **PlayFabAllocator** - Microsoft PlayFab integration - **EdgegapAllocator** - Edgegap integration +- (Coming Soon) RocketScienceAllocator - Multiplay by RocketScience integration ### Configure the module @@ -45,11 +46,23 @@ Once you've completed the configuration steps for your chosen provider, proceed ### Deploy the module +Deploy the module using either the [UGS CLI](#using-the-ugs-cli) (recommended) or the [Unity Editor](#using-the-unity-editor). + +#### Using the UGS CLI + ```sh # Deploy cloud code module for your chosen provider ugs deploy modules/ ``` +#### Using the Unity Editor + +1. Open the Unity Editor. +2. Install the `com.unity.services.cloudcode` and `com.unity.services.deployment` pacakges. +3. Create a new module reference by selecting **Right Click** > **Create** > **Services** > **Cloud Code C# Module Reference** +4. Edit the reference in the inspector to point to the module's sln file. +5. Deploy the module using the **Deploy Selected** button in the deployment window. (**Services** > **Deployment**) + ### Configure Unity Dashboard Navigate to the [Unity Dashboard](https://cloud.unity.com): From 288372727bd73b1adf5b00bac9b689190aab31cb Mon Sep 17 00:00:00 2001 From: Dominick Schroer Date: Mon, 2 Feb 2026 13:37:13 -0700 Subject: [PATCH 2/2] remove link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9fefd13..9ea2ee5 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Once you've completed the configuration steps for your chosen provider, proceed ### Deploy the module -Deploy the module using either the [UGS CLI](#using-the-ugs-cli) (recommended) or the [Unity Editor](#using-the-unity-editor). +Deploy the module using either the UGS CLI (recommended) or the Unity Editor. #### Using the UGS CLI