From 8316e257e9de9f6fc2844dd8918409877ed4bd46 Mon Sep 17 00:00:00 2001 From: Anthony Tesija Date: Fri, 6 Jun 2025 00:10:33 +0000 Subject: [PATCH 1/2] Better project setup wording --- docs/discord-social-sdk/getting-started/using-unity.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/discord-social-sdk/getting-started/using-unity.mdx b/docs/discord-social-sdk/getting-started/using-unity.mdx index db182e067a..ba33c14f2c 100644 --- a/docs/discord-social-sdk/getting-started/using-unity.mdx +++ b/docs/discord-social-sdk/getting-started/using-unity.mdx @@ -51,8 +51,8 @@ Let's set up your Unity project to include the Social SDK package and add the ne 1. Create a new 2D project in Unity Hub using Unity version 2021.3 or later 2. Either: - 1. Unzip the zip file in the `Packages` folder, or - 2. Unzip the zip file to a temporary location, and [Install Package from Disk](https://docs.unity3d.com/Manual/upm-ui-local.html) from the temporary location. + 1. Unzip the zip file in the Unity `Packages` folder, or + 2. Unzip the zip file and [Install Package from Disk](https://docs.unity3d.com/Manual/upm-ui-local.html). Make sure the folder is in a permanent spot as Unity will reference it from that location. 3. In your project add a `Scripts` folder and create a `DiscordManager.cs` script 4. Add the following code to `DiscordManager.cs`: ```cs From baab14814d45558ec019d95bff4e924e6849b744 Mon Sep 17 00:00:00 2001 From: Anthony Date: Mon, 9 Jun 2025 13:01:10 -0700 Subject: [PATCH 2/2] Update docs/discord-social-sdk/getting-started/using-unity.mdx Co-authored-by: Mark Mandel --- docs/discord-social-sdk/getting-started/using-unity.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/discord-social-sdk/getting-started/using-unity.mdx b/docs/discord-social-sdk/getting-started/using-unity.mdx index ba33c14f2c..d57b891bd4 100644 --- a/docs/discord-social-sdk/getting-started/using-unity.mdx +++ b/docs/discord-social-sdk/getting-started/using-unity.mdx @@ -52,7 +52,7 @@ Let's set up your Unity project to include the Social SDK package and add the ne 1. Create a new 2D project in Unity Hub using Unity version 2021.3 or later 2. Either: 1. Unzip the zip file in the Unity `Packages` folder, or - 2. Unzip the zip file and [Install Package from Disk](https://docs.unity3d.com/Manual/upm-ui-local.html). Make sure the folder is in a permanent spot as Unity will reference it from that location. + 2. Unzip the zip file and [Install Package from Disk](https://docs.unity3d.com/Manual/upm-ui-local.html). Make sure the folder is in a directory that won't get moved or deleted as your Unity project will load it from that location. 3. In your project add a `Scripts` folder and create a `DiscordManager.cs` script 4. Add the following code to `DiscordManager.cs`: ```cs