Modules Description

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

Hello everyone. Today I compiled my first custom build of Godot and everything went fine.
Now I wat to compile a export template for template focusing only in the modules I’m using in my game.
In the modules folder ( https://github.com/godotengine/godot/tree/master/modules ) we can see a lot of modules but I can’t see what each of them do. Someone knows the meaning of them? I don’t wan’t to delete everything and face errors later.

:bust_in_silhouette: Reply From: hungrymonkey

to disable a module

is module/mymodulefolder/config.py

#turn can_build to false
def can_build(platform):
    return False

def configure(env):
     pass

here is a small list of thing that the modules add

enet - networking

visualscript - Getting started with Visual Scripting — Godot Engine (3.0) documentation in English

freetype - fonts.

jpg - images.

just go through the list of things you are using for your game. And disable the formats you are not using

:bust_in_silhouette: Reply From: ruruarchy

you can read here

and here too