Skip to content

New to ImGUI. How can I switch rendering engines? #529

Description

@wolfieboy09

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.
Image

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:

Image

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions