Hello! This library is amazing and I'm glad it exists, but I'm trying to get an UI working and I've tried with Raylib.
I used this attached method:
public unsafe void Attached(nint parent, AudioPluginViewPlatform type)
{
Raylib.InitWindow(ViewSize.Item1, ViewSize.Item2, "NPlug.SimpleDelay");
IntPtr winHandle = (nint)Raylib.GetWindowHandle();
SetWindowPos(winHandle, parent, 0, 0, 0, 0, 0x0401 /*NOSIZE | SHOWWINDOW */);
SetParent(winHandle, parent);
ShowWindow(winHandle, 0x5);
while (!Raylib.WindowShouldClose())
{
Raylib.BeginDrawing();
Raylib.ClearBackground(new Color(255, 255, 255, 255));
Raylib.EndDrawing();
}
Raylib.CloseWindow();
}
However, this doesn't work.

Any help?
Hello! This library is amazing and I'm glad it exists, but I'm trying to get an UI working and I've tried with Raylib.
I used this attached method:
However, this doesn't work.

Any help?