top | item 32886353

(no title)

glassconclusion | 3 years ago

Looks like they are using IMGUI as dev tool: https://github.com/ocornut/imgui

discuss

order

meibo|3 years ago

If you enter any game studio nowadays, you're very likely to see Dear ImGui - it's pretty ubiquitous, and just flexible enough for programmers to make nice debug views for any purpose. It's nice in that you won't have to learn another UI kit when switching studios.

Der_Einzige|3 years ago

Wow. The paper on NLP I'm presenting soon includes software that I built using the python fork, dearpygui. I had no idea that dear imgui was so popular.

It seems to me to be super high quality of a GUI library.

honkdaddy|3 years ago

Sidebar: if I wanted to eventually transition from Android dev to C++ game dev, is my time building C++ ImGui tools a comparable experience, or is game dev a truly different beast? Curious for some opinions :)

The reason I like mobile and small desktop applications is partially for the tight cycles of build/test/fix/ship. Even writing it out now, the experience of working on any game of even moderate complexity must be entirely different, right?

ptr|3 years ago

Having a tight dev loop is important for complex games too — when you press F5, you build the whole game. Sometimes you even build the engine and all dependencies. Shipping usually follows a slower patch schedule since you need to pass certification etc.

If you work on a game, building ImGui tools isn’t a primary concern, it’s what you do to be able to easily test your stuff.

Dinux|3 years ago

Yes, for their internal testing tools.