Skip to content

Commit a077bf2

Browse files
committed
Upped version number
1 parent a2bc0d0 commit a077bf2

File tree

1 file changed

+5
-5
lines changed
  • articles/tutorials/building_2d_games/20_implementing_ui_with_gum

1 file changed

+5
-5
lines changed

articles/tutorials/building_2d_games/20_implementing_ui_with_gum/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ To add the Gum NuGet package in Visual Studio Code:
321321
2. Choose `Add NuGet Package` from the context menu.
322322
3. Enter `Gum.MonoGame` in the `Add NuGet Package` search prompt and press Enter.
323323
4. When the search finishes, select the `Gum.MonoGame` package in the results
324-
5. When prompted for a version choose version `2025.8.3.1`.
324+
5. When prompted for a version choose version `2025.8.3.3`.
325325

326326
#### [Visual Studio 2022](#tab/vs2022)
327327

@@ -332,7 +332,7 @@ To Add the Gum NuGet package in Visual Studio 2022:
332332
3. In the NuGet Package Manager window, select the `Browse` tab if it is not already selected.
333333
4. In the search box, enter `Gum.MonoGame`.
334334
5. Select the "Gum.MonoGame" package from the search results.
335-
6. On the right, in the version dropdown, select version `2025.8.3.1` and click the "Install" button.
335+
6. On the right, in the version dropdown, select version `2025.8.3.3` and click the "Install" button.
336336

337337
#### [dotnet CLI](#tab/dotnetcli)
338338

@@ -342,7 +342,7 @@ To add the Gum NuGet package using the dotnet CLI:
342342
2. Enter the following command:
343343

344344
```sh
345-
dotnet add DungeonSlime.csproj package Gum.MonoGame --version 2025.8.3.1
345+
dotnet add DungeonSlime.csproj package Gum.MonoGame --version 2025.8.3.3
346346
```
347347

348348
---
@@ -351,11 +351,11 @@ To add the Gum NuGet package using the dotnet CLI:
351351
> You can verify the package was successfully added by examining your `DungeonSlime.csproj` file, which should now contain a reference like:
352352
>
353353
> ```xml
354-
> <PackageReference Include="Gum.MonoGame" Version="2025.8.3.1" />
354+
> <PackageReference Include="Gum.MonoGame" Version="2025.8.3.3" />
355355
> ```
356356

357357
> [!IMPORTANT]
358-
> This tutorial uses version `2025.8.3.1` of Gum, which is the latest version of Gum as of this writing. That exact version is specified to use in the section above when installing the NuGet package to ensure compatibility throughout this tutorial. If there are newer versions of Gum available, please consult the [Gum documentation](https://docs.flatredball.com/gum/gum-tool/upgrading) before updating in case there are any breaking changes from the code that is presented in this tutorial.
358+
> This tutorial uses version `2025.8.3.3` of Gum, which is the latest version of Gum as of this writing. That exact version is specified to use in the section above when installing the NuGet package to ensure compatibility throughout this tutorial. If there are newer versions of Gum available, please consult the [Gum documentation](https://docs.flatredball.com/gum/gum-tool/upgrading) before updating in case there are any breaking changes from the code that is presented in this tutorial.
359359

360360
### Adding UI Sound Effect
361361

0 commit comments

Comments
 (0)