You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After crawling through all the examples and source code for this project and the imgui-go project I finally stumbled upon the secret sauce to get the window to have the text "Menu" instead of "Debug". Can you please consider adding this to one of your examples?
g.mgr.BeginFrame()
imgui.Begin("Menu") // changes menu title from default "Debug"
{
imgui.Text("Hello, world!")
}
imgui.End()
g.mgr.EndFrame()
The text was updated successfully, but these errors were encountered:
After crawling through all the examples and source code for this project and the imgui-go project I finally stumbled upon the secret sauce to get the window to have the text "Menu" instead of "Debug". Can you please consider adding this to one of your examples?
The text was updated successfully, but these errors were encountered: