SynesthesiaDev.Raylib-cs
2026.301.0
See the version list below for details.
dotnet add package SynesthesiaDev.Raylib-cs --version 2026.301.0
NuGet\Install-Package SynesthesiaDev.Raylib-cs -Version 2026.301.0
<PackageReference Include="SynesthesiaDev.Raylib-cs" Version="2026.301.0" />
<PackageVersion Include="SynesthesiaDev.Raylib-cs" Version="2026.301.0" />
<PackageReference Include="SynesthesiaDev.Raylib-cs" />
paket add SynesthesiaDev.Raylib-cs --version 2026.301.0
#r "nuget: SynesthesiaDev.Raylib-cs, 2026.301.0"
#:package SynesthesiaDev.Raylib-cs@2026.301.0
#addin nuget:?package=SynesthesiaDev.Raylib-cs&version=2026.301.0
#tool nuget:?package=SynesthesiaDev.Raylib-cs&version=2026.301.0
Raylib-cs
Modified Raylib bindings specifically for the Synesthesia engine. Modifications include:
- Removed audio bindings as Synestehsia uses BASS for audio
Raylib-cs targets net6.0 net8.0 and uses the official 5.5 release to build the native libraries.
Status
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 maintenance burden.
Installation - NuGet
This is the preferred method to get started.
- Pick a folder in which you would like to start a raylib project. For example "MyRaylibCSProj".
- Then from a terminal (for example a VSCode terminal), whilst in the directory you just created run the following commands. (Please keep in mind .NET should already be installed on your system)
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.
Installation - Manual
Download/clone the repo
Add Raylib-cs/Raylib-cs.csproj 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!
Hello, World!
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();
}
}
Contributing
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.
License
See LICENSE for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net6.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on SynesthesiaDev.Raylib-cs:
| Package | Downloads |
|---|---|
|
Synesthesia.Engine
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2026.307.0 | 158 | 3/7/2026 |
| 2026.303.0 | 215 | 3/3/2026 |
| 2026.301.3 | 91 | 3/1/2026 |
| 2026.301.0 | 81 | 3/1/2026 |
| 7.0.2 | 87 | 2/28/2026 |