Table of Contents

🚀 Get Started

This article walks you through the initial steps to use the packages in the Stride Community Toolkit.

🛠️ Prerequisites

Ensure the following are installed. If you're on Stride 4.2+, these should already be present.

  1. Microsoft Visual C++ 2015–2022 Redistributable
    • vcredist_x64.exe (~25 MB)
    • You may be asked to restart your PC after installation.
  2. .NET 8 SDK x64: Download (~200 MB)
    • Verify installation:
      dotnet --info
      
  3. IDE of your choice

📦 Adding the NuGet package

The toolkit is available via several packages named Stride.CommunityToolkit and Stride.CommunityToolkit.*. The main package includes all functionality. Add it via your IDE or CLI. It works for both regular Stride game projects and code-only projects.

To add the package via the command line:

dotnet add package Stride.CommunityToolkit --prerelease
Note

When using Stride.CommunityToolkit in code-only projects, you may need to add some dependencies manually to your project file. Using Stride.CommunityToolkit.Windows handles these automatically.

Additional toolkit packages

Explore the extensions in the left navigation or dive into the code-only section for simple examples.