-
Notifications
You must be signed in to change notification settings - Fork 344
Open
Description
Hi! I started C# recently to learn, and I wanted to make something with ImGui.
I'm using ClickableTransparentOverlay because that's the only thing working right now. I it works (mostly)
it just gets cut off at halfway on my screen.

Anyways, I have the following code:
using ImGuiNET;
using ClickableTransparentOverlay;
namespace ImGUISandbox;
class ImGUISandbox
{
class Program : Overlay
{
protected override void Render()
{
ImGui.Begin("The Window");
ImGui.Text("Some Text Here");
ImGui.End();
}
}
public static void Main(string[] args)
{
Program program = new Program();
program.Start().Wait();
}
}I do have these packages installed:
How can I change to using Veldrid instead? I want it to act as a normal window.
Using NET 9.0 as well
Any help is greatly appreciated
Metadata
Metadata
Assignees
Labels
No labels