![]() |
VOOZH | about |
dotnet add package SynesthesiaDev.Raylib-cs --version 2026.303.0
NuGet\Install-Package SynesthesiaDev.Raylib-cs -Version 2026.303.0
<PackageReference Include="SynesthesiaDev.Raylib-cs" Version="2026.303.0" />
<PackageVersion Include="SynesthesiaDev.Raylib-cs" Version="2026.303.0" />Directory.Packages.props
<PackageReference Include="SynesthesiaDev.Raylib-cs" />Project file
paket add SynesthesiaDev.Raylib-cs --version 2026.303.0
#r "nuget: SynesthesiaDev.Raylib-cs, 2026.303.0"
#:package SynesthesiaDev.Raylib-cs@2026.303.0
#addin nuget:?package=SynesthesiaDev.Raylib-cs&version=2026.303.0Install as a Cake Addin
#tool nuget:?package=SynesthesiaDev.Raylib-cs&version=2026.303.0Install as a Cake Tool
C# bindings for raylib. Modified for use in Synesthesia Engine with the following modifications:
StencilBuffer8Bit config flag to initialize stencil buffer to 8 bitsShader → NativeShaderFont → NativeFontModel → NativeModeMesh → NativeMeshTransform → NativeTransform👁 GitHub contributors
👁 Chat on Discord
👁 GitHub stars
👁 Build
Raylib-cs targets net6.0 net8.0 and uses the official 5.5 release to build the native libraries.
Raylib-cs is passively maintained. Occasional updates may be released from time to time. Pull requests may be accepted if they don't have a large maintainence burden.
This is the prefered method to get started.
dotnet new console
dotnet add package Raylib-cs
If you need to edit Raylib-cs source then you will need to add the bindings as a project (see below).
If you are new to using NuGet (or you've forgotten) and are trying to run the above command in the command prompt, remember that you need to be inside the intended project directory (not just inside the solution directory) otherwise the command won't work.
Download/clone the repo
Add to your project as an existing project.
Download/build the native libraries for the platforms you want using the official 5.5 release. NOTE: the MSVC version is required for Windows platforms
Setup the native libraries so they are in the same directory as the executable/can be found in the search path.
Start coding!
using Raylib_cs;
namespace HelloWorld;
internal static class Program
{
// STAThread is required if you deploy using NativeAOT on Windows - See https://github.com/raylib-cs/raylib-cs/issues/301
[System.STAThread]
public static void Main()
{
Raylib.InitWindow(800, 480, "Hello World");
while (!Raylib.WindowShouldClose())
{
Raylib.BeginDrawing();
Raylib.ClearBackground(Color.White);
Raylib.DrawText("Hello, world!", 12, 12, 20, Color.Black);
Raylib.EndDrawing();
}
Raylib.CloseWindow();
}
}
Feel free to open an issue. If you'd like to contribute, please fork the repository and make changes as you'd like. Pull requests are welcome.
If you want to request features or report bugs related to raylib directly (in contrast to this binding), please refer to the author's project repo.
See for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 1 NuGet packages that depend on SynesthesiaDev.Raylib-cs:
| Package | Downloads |
|---|---|
|
Synesthesia.Engine
Package Description |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2026.303.0 | 251 | 3/3/2026 |
| 2026.301.3 | 113 | 3/1/2026 |
| 2026.301.0 | 108 | 3/1/2026 |
| 7.0.2 | 113 | 2/28/2026 |