Can I build a exe in runtime?

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

Can I build a exe in runtime?

I want to do something like game engine with Godot. My goal is to create simple games without writing code. The problem is that I want to be able to export the created game. Actually I want to create an executable exe file. Can I do it? Or how can I do? It happens even when using C#.

What you want is not possible the way you want it. You could make an engine, using Godot, that reads external files that contain game logic. In essence, you are creating a runner for games, made for your engine.

If you wish, you could create an editor to help creating games for your engine. You can also leave the users write plain text files. It is up to you.

Godot is already an engine with scripting and editing tools. What are trying to do?

Juxxec | 2023-04-13 21:04

:bust_in_silhouette: Reply From: Cyber-Kun

personally if I was you I’d just edit godot source code to turn it into what you want.