I've been thinking about making a cross-platform mobile app but don't want to think about react native, touch javascript, or fiddle with xcode any more than I have to. Is it accurate to think that I could instead use godot to create a cross-platform app to eliminate complexity from react native while creating something that is performant/native across ios/android?
Show HN: GodotOS – Fake operating system interface made in the Godot engine
111–120 of 292 posts
Re: Show HN: GodotOS – Fake operating system interface made in the Godot engine
#112This is actually a great proof of concept for using Godot as a cross-platform framework for desktop applications. The distribution package is incredibly simple -- just a single executable and a data file -- and performance is excellent. This seems much superior to Flatpak and the like as a way to offer fully self-contained distro-agnostic binary packages, and vastly superior to Electron in the performance department.…
Re: Show HN: GodotOS – Fake operating system interface made in the Godot engine
#113Earlier quoted context omitted.
I was trying to think of arguments against it, so I thought about the fact immediate mode GUIs might not always be suitable, before I stumbled upon this post: https://stackoverflow.com/questions/47444189/what-are-the-pe... The only other downside I can think about is from a design standpoint, the application has to have the same design language across platforms, so it cannot have a native look for each. Any other con…
Some quick googling tells me Godot doesn't have native tray icons/notifications support or access to peripherals like webcams & printers. Buut if you're using Godot over electron/flutter/QT your app is probably focusing on 3D / physics topics. You can implement plugins for those other niche desktop features as you need them.
https://github.com/godotengine/godot/pulls?q=is%3Apr+is%3Aop...
Re: Show HN: GodotOS – Fake operating system interface made in the Godot engine
#114Re: Show HN: GodotOS – Fake operating system interface made in the Godot engine
#115Reminds me of all the "OSes"/GUIs that got made back in the QBasic days: http://qbasicgui.datacomponents.net/ Always a fun project to do. Thanks for carrying the torch forward in something modern! ps, my favorite of the QBasic ones is probably M-GUI: http://qbasicgui.datacomponents.net/95_mgui.html which even included its own programming language to make apps in!
Re: Show HN: GodotOS – Fake operating system interface made in the Godot engine
#116Heh, back when, I used to do (Q/Turbo)Basic stuff like: PRINT "Welcome!" INPUT "Password: ", pw$ and so on, with very little actual functionality. I guess some themes of toy projects are evergreen, even if the sophistication is on another level :)
Re: Show HN: GodotOS – Fake operating system interface made in the Godot engine
#117This is actually a great proof of concept for using Godot as a cross-platform framework for desktop applications. The distribution package is incredibly simple -- just a single executable and a data file -- and performance is excellent. This seems much superior to Flatpak and the like as a way to offer fully self-contained distro-agnostic binary packages, and vastly superior to Electron in the performance department.…
It's already being used for that! I use a program called Dungeondraft[1] for easily creating maps for TTRPGS and it's built on top of Godot (see the modding API page[2] where they mention Godot). [1]: https://dungeondraft.net/ [2]: https://megasploot.github.io/DungeondraftModdingAPI/
Re: Show HN: GodotOS – Fake operating system interface made in the Godot engine
#118This is actually a great proof of concept for using Godot as a cross-platform framework for desktop applications. The distribution package is incredibly simple -- just a single executable and a data file -- and performance is excellent. This seems much superior to Flatpak and the like as a way to offer fully self-contained distro-agnostic binary packages, and vastly superior to Electron in the performance department.…
Unless accessibility becomes a first class concern, game engines are not going to be good choices for desktop applications.
Re: Show HN: GodotOS – Fake operating system interface made in the Godot engine
#119It was a great way to understand UI and usability paradigms beyond building game mechanics.
This definitely triggered some pleasant nostalgia for me.
Re: Show HN: GodotOS – Fake operating system interface made in the Godot engine
#120Earlier quoted context omitted.
This would be sooo much worse from a UI point of view. All nice OS features (good text rendering, uniform text editing interface, accessibility, transparency) would all get chucked out the window. I also don't think Godot is inherently more performant for any random UI than Electron is. It happens that most Godot apps are performant because they're made by the type of people who want to use videogame engines and thus…
I have never encountered an Electron app that can even display the results of keystrokes in a timely manner, and that includes vscode. All Electron apps waste system resources to an obscene degree. Also, Electron apps have already thrown away OS conventions to the point that user interface consistency has become a thing of the past. I don't believe that either choice is ideal, but if Godot were ubiquitous instead of…