If I program everything, will performane suffer?

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

Hello, Im old school and like to program whenever possible. Are there things in godot that literally require you to use their drag and drop gui, or can I just program everything by hand? Do u think there would be performance issues doing stuff programmatically vs using the drag and drop gui?

No, most of the time there will be no performance issue.
But If you use loops inside loops … there will be performance issue.

supper_raptor | 2020-01-02 14:46

:bust_in_silhouette: Reply From: The_Black_Chess_King

What you mean by drag and drop? In Godot you will mostly use gdscript, which is written code, if you’re talking about nodes and the tools inside godot, using them will be easier as it’s more intuitive than 100% code. Perfomance-wise, you can see the other languages godot support, and by the way, there’s no right way to use this powerful engine, try it out your way and see how it goes.