This is part of a GDQuest Godot repository containing multiple addons:
- GDQuest ColorPicker Presets
- GDQuest Prototype Material
- GDQuest Sparkly Bag
- GDQuest Theme Utils
- GDQuest Vector3D
- Copy any
addons/PLUGIN_NAME
intores://addons/PLUGIN_NAME
. - Enable the addon from
Project > Project Settings... > Plugins
.
- Install gd-plug using the Godot Asset Library.
- Save the following code into the file
res://plug.gd
(create the file if necessary):
#!/usr/bin/env -S godot --headless --script
extends "res://addons/gd-plug/plug.gd"
func _plugging() -> void:
plug(
"[email protected]:GDQuest/godot-addons.git",
{include = ["addons/PLUGIN_NAME"]}
)
- On Linux, make the
res://plug.gd
script executable withchmod +x plug.gd
. - Using the command line, run
./plug.gd install
orgodot --headless --script plug.gd install
.