this post was submitted on 18 Sep 2023
85 points (97.8% liked)

Godot

5686 readers
2 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

[email protected]

Credits

founded 1 year ago
MODERATORS
all 22 comments
sorted by: hot top controversial new old
[–] [email protected] 37 points 1 year ago* (last edited 1 year ago) (2 children)

Juan Linietsky's (reduzio) response:

This article is very interesting. Just want to note that this is something we are aware of and the intention is to work it on in two fronts:

  • From the binder API, adding a struct type, to pass these results more efficiently.
  • The GDExtension side can already expose these structs to the binder API with a proper layout description, but the C# in support has not been moved to it yet (its one of the missing steps to merge both the C# and default editor).

So basically, this area of the engine is a work in progress. To do this also we had to finalize the system to provide compatibility functions to older builds of Godot libraries and extensions as a prerequisite and this was completed in 4.1. Fortunately there is not a lot of the API exposed this way, the majority uses more efficient interfaces. This is more part of the legacy code that is being modernized. None of this is particularly complex to do, but the demand has not been high enough so other things are prioritized. I am hoping your article motivates some contributors to do it :)

Give us a bit of time. Everything is kind of a mess because of the suddendly increased interest of several users and companies on the C# side. This work has to be properly organized but the general idea is that funding will be used to make sure all works as smooth as possible.

From https://old.reddit.com/r/godot/comments/16lti15/godot_is_not_the_new_unity_the_anatomy_of_a_godot/k16982q/

[–] [email protected] 13 points 1 year ago (1 children)

Hopefully the sudden interest in Godot will bring experienced/knowledgeable people who want to address performance issues and want to improve the engine, rather than only use it to create games/apps.

[–] [email protected] 5 points 1 year ago

I'm really hoping the can scalp some Unity devs

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago) (2 children)

I wonder: are these inefficiencies only relevant when using C# as your code base?

I mean, does all this talk about the "binding layer" being "structurally built to be slow " apply to those using GDscript?

Because I remember that years ago, back when it was decided to go with a custom designed language (GDScript), the justification put forward was that it would actually be more efficient to do it that way. So it would be kind of ironic if now the API from GDExtensions allows for more efficient bindings than GDScript.

But if it's only talking about the C# bindings... then the complaints are kind of missing the point. If you truly want to move from Unity to Godot properly, I would expect learning GDScript would be the more advisable direction. Specially at the moment. Godot's C# API and the new native interfaces are not really very mature, they were not the intended main way to use the engine... they are more of an extra convenient feature on the side that you can experiment with. In fact I believe they were recently heavily reworked in v4.0

Of course I understand that those coming from Unity would be more comfortable with a C# API, and I agree that it would be a nice thing if the C# API was just as efficient as the GDScript API, but that's not the same thing as implying that moving to Godot doesn't work because it's "built to be slow".....

[–] [email protected] 5 points 1 year ago (2 children)

@Ferk hey, professional Godot developer here

i've ran a lot of projects over the years: you rarely make code that runs in a way that these inefficiencies become a problem.

in order for this to be the bottleneck, you need to run really efficient code already, which is what 99% of problems dont require

its more of a non-issue unless you're doing highly specific work :)

yes, technically you can reduce overhead by compiling a GDExtension, but for most people this is overkill ✨

[–] [email protected] 4 points 1 year ago (2 children)

Are you sure this isn't selection bias?

Is it really that the the Godot approach is fast enough most of the time, or is it that everyone who needs perf has just decided to use something else.

[–] [email protected] -1 points 1 year ago (1 children)

@Octorine i dont think its a question that's relevant, pragmatically.

it doesn't fundamentally matter if there is selection bias, because its not relevant for the design problem that the language integration solves

[–] [email protected] 2 points 1 year ago

Can you rephrase that? I don't follow.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

Thanks for the insight!
I assume you are talking about compiling a GDExtension using C or some lower level language, right? not C#
What I'm wondering is if it'd actually be more efficient to use C# than GDScript in Godot. Because I would have expected the opposite.

[–] [email protected] 2 points 1 year ago (1 children)

@Ferk we’re using Rust with GDNative

the reason not being performance, but language features (Rust makes it easy to have good safety guarantees)

C# is overall more performant than GDScript, but it is rare that you get to use that performance in a way that it makes a measurable difference

i always just tell people to work with what they know well and what makes them feel comfortable, thats the most important

great part about godot: you can run these languages side by side ✨

[–] [email protected] 1 points 1 year ago

Thank you! that was very informative.

[–] [email protected] 3 points 1 year ago

Python syntax makes me really have no interest in gdscript. I don't understand why people like python/similar languages. Its painful to use.

[–] [email protected] 29 points 1 year ago* (last edited 1 year ago) (1 children)

TLDR - Godot's raycasting is considerably more memory intensive than Unity's. Using the Godot API to call its raycast in any language is much slower than simply using the builtin Node. Most of the performance woes are due to how GDScript is implemented: a slow, interpreted language (Python)

It's a fair complaint, Godot is far from perfect in many areas and may not be ideal for certain projects. This is fine, really. If it's possible to make the engine better, I hope the pull requests that do so get accepted

He did a small complaint that GDScript should be ditched. If you care entirely about performance, that is true. The problem, obviously, is that a lot of people, me included, rely on it instead of C#. For all intents and purposes, this is something that could be done, but it'd end up as a wholly separate branch of Godot that would end up with several incompatibilities, eventually becoming a different engine. In that case, it might be better to just check an alternative like Stride3D or Torque3D

[–] [email protected] 23 points 1 year ago* (last edited 1 year ago) (3 children)

I understand where the C# devs are coming from, but many of these unity devs experimenting need to understand C# was hardly a consideration before microsoft earmarked funds to push and develop support for the language in the engine.

I'd be heartbroken if gdscript was ever dropped for improved C# support, games are much more fun to write in gdscript. I hope both languages can become more integrated and performent without the sacrificing of the other.

[–] [email protected] 3 points 1 year ago

I primarily write in C#, but I really like having GDScript in my pocket for when I need something done quickly or simply.

[–] [email protected] 1 points 1 year ago

Yeah, I don't want GDscript to end up like Unityscript or boo-lang on unity.

After programming in gdscript for a couple of years I don't want to have to go back to C# ever again.

[–] [email protected] 1 points 1 year ago

Unity also started out that way, but they dropped their Python-like and JavaScript-like languages after they realized that nobody used them. There wasn’t so much as a blip after that announcement, indicating that they were totally right on that.

[–] [email protected] 20 points 1 year ago

Necessity is the mother of invention. My hope is that Godot sees more devs wanting to contribute to the project since we've now seen firsthand what being under a corporate umbrella can do to your product when it's not your own umbrella.

[–] [email protected] 12 points 1 year ago (1 children)

UPDATE: This article has started an ongoing conversation with the Godot devs. They care about the issues raised, and would like to improve things. Significant improvements will almost certainly be made, although it’s still early days and it’s unclear what will change and by how much. I am encouraged by the response. I believe Godot’s future could be very bright indeed.

Well that's nice to see so quick

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago)

@abbotsbury @BrikoX
Consider checking out the feature requests to see if specific changes you like are planned (or not for core). They won't predict the future exactly but should make things more clearer.

https://github.com/godotengine/godot/blob/571cd0eb791b37e9a8adda9f909251138170f6b7/CONTRIBUTING.md

https://github.com/godotengine/godot-proposals

[–] [email protected] 5 points 1 year ago* (last edited 1 year ago)

There’s another response here - incorrect API usage https://www.reddit.com/r/godot/comments/16lti15/comment/k190k7e/?utm_source=reddit&utm_medium=usertext&utm_name=godot&utm_content=t1_k191ilw