Comment by WillAdams

11 hours ago

Is there anything in this which will make it easier/better to make GUI applications?

https://github.com/derkork/openscad-graph-editor

kind of has me considering using Godot for creating a drawing program....

I wonder the same thing, but with an emphasis on app mobile development.

Godot from project setup to running on my Android is way more effortless/lightweight experience than doing the way of AndroidStudio and/or Flutter stuff.

What I dream of is making a Lua binding for essential godot GUI control nodes using GDExtension and using this LibGodot to own the engine loop, so I can do all the app code in Lua.

So, I may have drifted away from your question, but the point is that I love Godot for gaming, and I can handle GDScript plus the engine editor, but for writing a complete application I would want to develop in my language/editor/ecosystem of choice.

In that sense, LibGodot(plus GDExtension) may help indirectly developing GUI applications by letting people own Godot in their ecossystem of choice.

  • The future of cross-platform toolkits for graphical apps is Godot ("GDTK"?), instead of Electron?

    • A fork of Godot optimized for native apps would be a good idea. Especially if it learned the lessons of the web stack and used basic text-based formats for describing layout and theming (like HTML and CSS). Maybe something like QT. Something simple, flexible and portable that's as easy to use as Electron but doesn't require lugging around a 60mb Chromium instance for every application.

      Some work would need to be done improving text rendering, layout and to add more GUI elements. Probably a lot of stuff removed from the backend that isn't necessary (apps won't need physics or lighting, probably.)

      I made a basic theme loader for a project ages ago based on the config file format because dealing with theming and fonts was a pain at the time. Nothing novel, it was just a dictionary that had node paths as keys and set values. It is possible, I don't know why Godot makes some things more complicated than they need to be.

I'm working right now on an app in Godot to support a tabletop game. Their UI framework is pretty nice IMO. It really helps that the editor itself is made in Godot, so they have a lot of real usage of their UI system already

They made improvements in visualizing margins for Margin containers. A small but very useful enhancement.

I don't know about the new features, but you could definitely make a drawing program in Godot already. There are a couple really good RPG map-making tools in Godot, and that's basically a drawing app where your brushes are trees and buildings