Raylib-CSharp-Vinculum
4.5.0.1
See the version list below for details.
dotnet add package Raylib-CSharp-Vinculum --version 4.5.0.1
NuGet\Install-Package Raylib-CSharp-Vinculum -Version 4.5.0.1
<PackageReference Include="Raylib-CSharp-Vinculum" Version="4.5.0.1" />
paket add Raylib-CSharp-Vinculum --version 4.5.0.1
#r "nuget: Raylib-CSharp-Vinculum, 4.5.0.1"
// Install Raylib-CSharp-Vinculum as a Cake Addin #addin nuget:?package=Raylib-CSharp-Vinculum&version=4.5.0.1 // Install Raylib-CSharp-Vinculum as a Cake Tool #tool nuget:?package=Raylib-CSharp-Vinculum&version=4.5.0.1
Raylib-CSharp-Vinculum
Raylib-CSharp-Vinculum is a autogen C#/.Net binding for Raylib, a simple and easy-to-use 2d/3d videogame framework, similar to XNA / MonoGame.
- Windows & Linux supported.
- Supports .Net 5+, Mono 6.4+, Core 3.0
- 1-1 bindings + convenience wrappers to make it easier to use.
- Includes bindings for all of Raylib's extras:
raylib
: Core features, including Audio.rlgl
: OpenGl abstractionraygui
: An Imperitive Guiphysac
: A simple 2d physics framework.rres
: A simple and easy-to-use file-format to package resourceseasings
: Use for simple animations (C# Managed Port)raymath
: A game math library (C# Managed Port)rcamera
: A basic camera system (Direct C# port of rcamera.h)
- Requires
unsafe
for 3d workflows. - A focus on performance. No runtime allocations if at all possible.
- A fork of Raylib-CsLo as the maintainer wishes to step down.
- No intellisense docs. You can read the Raylib cheatsheet for some help or view the examples
- Nuget package can be found here
- Go give Ray some love, https://github.com/sponsors/raysan5
Wait a minute haven't I seen this repository before?
Maybe! This repo is a fork of Raylib-CsLo and the Maintainer (jasonswearingen/Novaleaf) announced they wanted to step down from the project and seeing as I use the project for a set a game-making tools I decided to fork the project and greatly optimize the project layout for better long term maintainability. Why did I change the name? Honestly the name Raylib-CsLo
is kinda boring, and being inspired by projects with names like Vortice I chose the name Vinculum vin·cu·lum
witch means Bond
in Latin also I dont want to "steal" the name, other then the name, the only real change from a end-user point of view is namespace is different Raylib-CsLo > ZeroElectric.Vinculum
What is Raylib?
Raylib is a easey-to-use videogame framework well suited for prototyping, tooling, embedded systems and education, inclueds systems for: audio, 3D, 2D, 2D physics, fonts, animation, an OpenGL abstraction layer & more. Inspired By Xna
& The Borland Graphics Interface
. However, Raylib
is a C framework. Raylib-CSharp-Vinculum
is a C# autogen wrapper, which lets you use Raylib in C#/.Net.
High performance for 3D! (but unsafe
to use)
3D requires the unsafe
keyword. If you use 3D, you will need to understand how pointers work. A basic guide on pointers can be found here.
Additionally, 3D users: be sure you check the FAQ & Tips section below, especially on how you need to use Matrix4x4.Transpose()
when sending Matricies to Raylib.
How to Install
via Nuget
By adding the package using .NET CLI:
dotnet add package Raylib-CSharp-Vinculum
Or by searching for Raylib-CSharp-Vinculum in Visual Studio's Nuget Package Manager
via Source
Prerequisites
- Currently only buildable on Windows 10/11
- Visual Studio 2022 with the following workloads:
- .NET SDK (NET6+)
- Visual C++ Toolset
- MSVC v142(or higher) x64/x86
- Clone this repo using the git command below. (Note: Downloading this repo as a zip file will not work, it is important you use
git clone --recursive
to get all of the submodules)
git clone --recursive https://github.com/ZeroElectric/Raylib-CSharp-Vinculum.git
If you didn't/forgot to use
--recursive
, you can rungit submodule update --init --recursive
to fix it
- Run
build.bat
and wait for the build to complete - Reference
Raylib-CSharp-Vinculum.dll
fromOutput\bin
and import the folderruntimes
into your project's root directory - Compiled 'Examples' it will be in
Output\example-bin
If the build wasn't successful make a new issue with the error it gave you
Differences from Raylib-CsLo
- Changed the namespace from
Raylib-CsLo > ZeroElectric.Vinculum
- Greatly optimized the project layout
- Uses a newer build of Raylib
- New Build system, now you just run build.bat from the root to build the lib
Examples
Basic Example:
using ZeroElectric.Vinculum;
namespace VinculumExample;
public static class Program
{
public static void Main(string[] args)
{
// Set the width and height of the window
int screenWidth = 800;
int screenHeight = 450;
// Initialize the window with the specified width, height, and title
Raylib.InitWindow(screenWidth, screenHeight, "Hello World , Raylib-CSharp-Vinculum");
// Set the FPS to 60
Raylib.SetTargetFPS(60);
// Loop until the window is closed
while (!Raylib.WindowShouldClose())
{
// Begin drawing to the window
Raylib.BeginDrawing();
// Clear the background to white
Raylib.ClearBackground(Color.RAYWHITE);
// Draw the text "Hello World" in maroon color at position (190, 200)
Raylib.DrawText("Hello Raylib in CSharp!", 190, 200, 20, Color.MAROON);
// End drawing to the window
Raylib.EndDrawing();
}
// Close the window
Raylib.CloseWindow();
}
}
FAQ & Tips
- How do I convert a string to
sbyte*
or vice-versa?- All API's that take
sbyte*
havestring
wrappers, so be sure to look at the overload you can call.
- All API's that take
- Do I have to really cast my Enum to
int
?- The autogen bindings are left untouched, however convenience wrappers have been added. Usually these will automatically "work" via function overloads, but when this is not possible, try adding an underscore
_
to the end of the function/property. For example:Camera3D.projection_ = CameraProjection.CAMERA_ORTHOGRAPHIC; Gesture gesture = Raylib.GetGestureDetected_();
- If all else fails, yes. Cast to
(int)
.
- The autogen bindings are left untouched, however convenience wrappers have been added. Usually these will automatically "work" via function overloads, but when this is not possible, try adding an underscore
- I ran the Example project in a profiler. What are all these
sbyte[]
arrays being allocated?- A pool of
sbyte[]
is allocated for string marshall purposes, to avoid runtime allocations.
- A pool of
- Can I, Should I use
RayMath
?ZeroElectric.Vinculum.RayMath
contains a lot of super helpful functions for doing gamedev related maths.- The
RayMath
helper functions have been translated into C# code. This makes the code pretty fast, but if the same function exists underSystem.Numerics
you should use that instead, because the DotNet CLR treats things under System.Numerics special, and optimizes it better.
- Why are my matricies corrupt?
- Raylib/OpenGl uses column-major matricies, while dotnet/vulkan/directx uses row-major. When passing your final calculated matrix to raylib for rendering, call
Matrix4x4.Transpose(yourMatrix)
- Raylib/OpenGl uses column-major matricies, while dotnet/vulkan/directx uses row-major. When passing your final calculated matrix to raylib for rendering, call
Known Issues
RayGui
: be sure to callRayGui.GuiLoadStyleDefault();
right after youInitWindow()
. This is needed to initialize the gui properly. If you don't, if you close a raylib window and then open a new one (inside the same app), the gui will be broken.- The
Text.Unicode
example doesn't render unicode properly. Maybe the required font is missing, maybe there is a bug in the example (Utf16 to Utf8 conversion) or maybe there is a bug in Raylib. A hunch: I think it's probably due to the fonts not including unicode characters, but I didn't investigate further. - Native Memory allocation functions are not ported: use
System.Runtime.InteropServices.NativeMemory.Alloc()
instead LogCustom()
is ported but doesn't support variable length arguments.Texture2D
doesn't exist. it is just an alias forTexture
so use that instead.- You might want to use
using
aliases like the following//Use 'global using'-'global using static' to make C# code function more like the raylib c examples. global using static ZeroElectric.Vinculum.Raylib; global using static ZeroElectric.Vinculum.RayMath; global using static ZeroElectric.Vinculum.RayCamera; global using static ZeroElectric.Vinculum.RayGui; global using static ZeroElectric.Vinculum.RlGl; global using Camera = ZeroElectric.Vinculum.Camera3D; global using RenderTexture2D = ZeroElectric.Vinculum.RenderTexture; global using Texture2D = ZeroElectric.Vinculum.Texture; global using TextureCubemap = ZeroElectric.Vinculum.Texture; global using Matrix = System.Numerics.Matrix4x4;
License
Mozilla Public License 2.0 (MPL)
This repository is licensed under the Mozilla Public License 2.0 (MPL). The MPL is a popular "weak copyleft" license that allows just about anything. For example, you may use/include/static-link this library in a commercial, closed-source project without any burdens. The main limitation of the MPL being that: Modifications to the source code in this project must be open sourced.
The MPL is a great choice, both by providing flexibility to the user, and by encouraging contributions to the underlying project. If you would like to read about the MPL, FOSSA has a great overview of the MPL 2.0 here.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- CommunityToolkit.HighPerformance (>= 8.1.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Raylib-CSharp-Vinculum:
Package | Downloads |
---|---|
WoopWoopEngine
A basic C# game engine with Raylib for rendering. |
|
CopperDevs.DearImGui.Renderer.Raylib.Raylib-CSharp-Vinculum
This package is just support for the Raylib-CSharp-Vinculum bindings for the raylib renderer for my DearImGui layering |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
5.0.1 | 1,832 | 1/14/2024 |
5.0.0 | 1,590 | 11/22/2023 |
4.5.2 | 2,290 | 5/12/2023 |
4.5.1 | 2,141 | 4/20/2023 |
4.5.0.1 | 2,204 | 4/8/2023 |
4.5.0 | 2,298 | 3/18/2023 |
4.5.0-rc1 | 2,035 | 3/16/2023 |
4.5.0-dev-alpha | 2,067 | 3/14/2023 |
4.2.0-alpha | 2,072 | 12/8/2022 |
Release Notes:
4.5.0.1 (Apr 7 2023):
- Added Linux support.
4.5.0 (Mar 18 2023):
- A simpler and more extendable Camera module (RayCamera a C# port of rcamera.h).
- Support for M3D models and M3D/GLTF animations,
- Support for QOA audio format,
- Added new data structures validation functions such as `IsImageReady()`, `IsTextureReady()`, `IsSoundReady()` & more!
- Redesigned rlgl module for automatic render-batch limits checking and rshapes module to minimize the rlgl dependency.
The following functions have been removed or renamed:
- REMOVED: Multichannel audio API: PlaySoundMulti(), StopSoundMulti()
- REMOVED: UnloadModelKeepMeshes()
- REMOVED: DrawCubeTexture(), DrawCubeTextureRec(), functions moved to new example: `DrawCubeWithTexture`
- REMOVED: DrawTextureQud()
- REMOVED: DrawTexturePoly(), function moved to example: `textures_polygon`
- REMOVED: DrawTextureTiled(),function implementation moved to the textures_tiled.c
- RENAMED: TextCodepointsToUTF8() to LoadUTF8()
- RENAMED: GetCodepoint() -> GetCodepointNext()
With more then 25 new functions and 40+ functions revsions make sure to check out raylib's [CHANGELOG]([CHANGELOG](https://github.com/raysan5/raylib/blob/master/CHANGELOG)) for a detailed list of changes in raylib 4.5
4.5.0-rc1:
- Added RayCamera
4.5.0-dev-alpha:
- Updated to Raylib 4.5-dev
4.2.0.0-alpha:
- Initial release of Raylib-CSharp-Vinculum, a C# binding for Raylib 4.2, supports Windows.