xoofx / NPlug.Samples

Samples for creating VST3 audio native plugins with NPlug and .NET7+/NativeAOT.
https://github.com/xoofx/NPlug/
Other
19 stars 1 forks source link

Add a sample with UI #1

Open xoofx opened 1 year ago

xoofx commented 1 year ago

I was not able to find a .NET UI library that is small enough (e.g not bringing 10MB of Skia native binaries) and compatible with NativeAOT, and would support the VST3 model (e.g just HWND, renderloop is handled by the host).

eliasstepanik commented 5 months ago

Maybe try using Raylib. It already has a ui lib and its really small.

image

I use the Raylib-CsLo Bindings.

Its also really easy to use. image image

Here are some links: https://www.raylib.com/index.html https://github.com/raysan5/raygui

jxqu3 commented 2 months ago

I second this, RayGUI is a great lib