this post was submitted on 21 Jul 2026
16 points (90.0% liked)

Godot

7780 readers
207 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

!roguelikedev@programming.dev

Credits

founded 3 years ago
MODERATORS
 

Most people seem to agree gdscript should be faster for heavy engine work, but that's not what I found.

you are viewing a single comment's thread
view the rest of the comments
[–] josephc@lemmy.ml 7 points 1 week ago (1 children)

No. I think the general consensus is that C# is faster.

From the devs: "According to some preliminary benchmarks, the performance of C# in Godot — while generally in the same order of magnitude — is roughly ~4× that of GDScript in some naive cases. C++ is still a little faster; the specifics are going to vary according to your use case. GDScript is likely fast enough for most general scripting workloads. C# is faster, but requires some expensive marshalling when talking to Godot."

The cases where GDScript are faster consist of those where there's a great deal of marshalling and unmarshalling, like with heavy engine calls and signaling. If you're doing compute heavy work.

GDScript is still plenty fast, so use the one that's most comfortable.

[–] RaphaelSchmitz@feddit.org 2 points 5 days ago

"Heavy engine calls" sounds slightly off.

If you do a lot of processing work in code and then send it over to Godot in one "heavy" engine call, C# will be faster.

But if you do less work in code with MANY Godot calls, the translation cost can easily overshadow the performance advantage of C# itself.