How add plugins to godot?

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

Hi, how to add a plugin like godot terrain editor(GitHub - Zylann/godot_terrain_plugin: 3D Terrain plugin for Godot Engine [NO LONGER MAINTAINED]) to Godot?
I downloaded source code godot
And is it possible to compile Godot with vs code?

Why do you need to compile Godot with this code?

BlockOG | 2020-12-26 17:07

Is it possible to add a plugin without compiling it? I want to have the terrain editor plugin in godot by default

abbos | 2020-12-26 17:17

:bust_in_silhouette: Reply From: Lopy

Editor plugins are added to Godot after it is compiled, here are the instructions.

Modules on the other hand, are added before it is compiled. They should be found as a folder that you drop inside the modules folder in Godot’s source.
Here are the instructions to compile Godot.