rlImgui-cs-branches-docking
1.0.0
See the version list below for details.
dotnet add package rlImgui-cs-branches-docking --version 1.0.0
NuGet\Install-Package rlImgui-cs-branches-docking -Version 1.0.0
<PackageReference Include="rlImgui-cs-branches-docking" Version="1.0.0" />
paket add rlImgui-cs-branches-docking --version 1.0.0
#r "nuget: rlImgui-cs-branches-docking, 1.0.0"
// Install rlImgui-cs-branches-docking as a Cake Addin #addin nuget:?package=rlImgui-cs-branches-docking&version=1.0.0 // Install rlImgui-cs-branches-docking as a Cake Tool #tool nuget:?package=rlImgui-cs-branches-docking&version=1.0.0
rlImGui-cs
<img align="left" src="https://github.com/raysan5/raylib/raw/master/logo/raylib_logo_animation.gif" width="64"> A Raylib-cs integration with DearImGui
rlImgui-cs provides a backend for Dear ImGui using Raylib for C# using https://github.com/mellinoe/ImGui.NET
Building
rlImGui-cs is is a shared library that uses raylib-cs and ImGui.Net
Setup
Using rlImGui in your code is very easy. Once you have included the library, or source files for rlImGui and ImGui in your project, simply do the following.
using Raylib_cs;
using rlImGui_cs;
using ImGuiNET;
// before your game loop
rlImGui.Setup(true); // sets up ImGui with ether a dark or light default theme
// inside your game loop, between BeginDrawing() and EndDrawing()
rlImGui.Begin(); // starts the ImGui content mode. Make all ImGui calls after this
rlImGui.End(); // ends the ImGui content mode. Make all ImGui calls before this
// after your game loop is over, before you close the window
rlImGui.Shutdown(); // cleans up ImGui
Examples
There are two example programs in the examples folder.
Simple
This is the most simple use of ImGui in raylib, it just shows the ImGui demo window.
Editor
This is a more complex example of ImGui, showing how to use raylib 2d and 3d cameras to draw into ImGui windows using render textures.
Images
Raylib textures can be drawn in ImGui using the following functions
rlImGui.Image(Texture2D image);
rlImGui.ImageSize(Texture2D image, int width, int height);
rlImGui.ImageRect(Texture2D image, int destWidth, int destHeight, Rectangle sourceRect);
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 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. |
-
net6.0
- ImGui.NET.Branches.Docking (>= 1.88.0)
- Raylib-cs (>= 4.5.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Inital Release