guur
1
Is there a GUI library where I can do everything I need WITHOUT the editor?
The builtin unity gui sucks horribly, and every library I’ve found requires you to design stuff in the unity editor.
I just want a library where I can specify a window like
Window* window = new Window(100, 100, "Test Window");
//add some widgets here and connect their events to callback methods
window.Show();
Use IMGUI. Unity - Manual: Immediate Mode GUI (IMGUI) Although you can do everything with the standard GUI in code as well; Unity - Scripting API: (look under UnityEngine.UI for relevant classes etc.).
–Eric
guur
3
I’ve been using IMGUI already and it feels very limited.
How would I go about making a window with some widgets using the standard GUI in code?
IMGUI will do anything you can code, so I’m not sure what’s limited about it.
–Eric