Is the standard version of Godot more powerful than the mono version?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Amirmohamad

Is the standard version of Godot more powerful than the mono version?
Or does it matter?
And I have another question , can I use c++ in godot?
If I can how can I use that?

:bust_in_silhouette: Reply From: timothybrentwood

Mono = C# version of Godot. The normal version of Godot runs off of GDScript. If you’re proficient in C++ you should be able to pick up GDScript very easily. Using GDScript has many advantage such as changes that you save while running your game will be updated in real time to your game. GDScript is also created for making games in Godot so you will get a lot ‘for free’ compared to using other languages.

If you insist on using C++ you can find out how here: https://docs.godotengine.org/en/stable/tutorials/plugins/gdnative/gdnative-cpp-example.html
Here is a video talking about using Godot with C++ advantages and disadvantages: https://www.youtube.com/watch?v=MscgBCzA7eA

We use C++/C# because a very inportant reason that gdscript doesn’t have good way to create singleton instance… if this feature can be supported, i think many user will choose this buildin script to split the mono’s runtime.

jikai507 | 2021-09-29 04:38