How to Install and Enable Godot Plugins
Everything you need to know about installing Godot editor plugins and add-ons, enabling them in Project Settings, and wiring up autoloads and nodes.
The Godot Asset Library is the official place to find free and open source assets for the Godot Engine. Assets come in several shapes β plugins, shaders, scripts, templates, demos and complete projects β and each one installs a little differently. This guide walks you through every type.
The fastest way to install any asset is straight from the Godot editor:
Godot downloads the asset, extracts it into your project, and (for plugins) asks you whether to enable it. This works for every asset type.
If you downloaded a ZIP directly from this site or a GitHub release:
addons/ folder, a scripts/ folder, or a project.godot file.Tip: Keep the folder structure intact. Plugins almost always need to live under
addons/<plugin-name>/exactly as shipped, or Godot will not find them.
Plugins extend the editor itself β docks, panels, and new node types. After installing:
Some plugins also need a global (autoload) or an exported node to be added to your scene. Read the plugin's README on its asset page for those details. Browse the best Godot plugins or see all Godot tools and add-ons.
Shaders are usually single .gdshader files or small add-ons. To use one:
ShaderMaterial on the node you want to affect (sprite, material, or CanvasItem).A good starting point is the Shaders category, and our shader guide explains the concepts in depth.
Single scripts are copied into your project and attached to nodes, or loaded with preload()/load() from GDScript. Check the asset's README for the intended usage β some are editor tools, others are runtime libraries you extends or instantiate. Find more in the Scripts category.
Templates and demos ship a full project.godot, so they are meant to be opened as their own project:
project.godot.Browse ready-to-study demos, projects and templates.
Before installing, always confirm the asset supports your Godot version. Assets in this library list the exact version they were built for. If you are on Godot 4, filter the catalog by engine, e.g. Godot 4 assets, or read how to choose a Godot asset for the full checklist.
addons/ and that you restarted the editor.Still stuck? The asset's page links to its repository and issues tracker β maintainers usually answer quickly.