https://github.com/gdquest/godot-addons
GDQuest Godot Addons
https://github.com/gdquest/godot-addons
Last synced: 8 months ago
JSON representation
GDQuest Godot Addons
- Host: GitHub
- URL: https://github.com/gdquest/godot-addons
- Owner: GDQuest
- License: mit
- Created: 2023-05-13T08:21:41.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-09-18T16:50:30.000Z (9 months ago)
- Last Synced: 2025-10-20T23:54:03.284Z (8 months ago)
- Language: GDScript
- Size: 6.78 MB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GDQuest Godot Addons
This is part of a GDQuest Godot repository containing multiple addons:
- [GDQuest ColorPicker Presets](addons/gdquest_colorpicker_presets)
- [GDQuest Prototype Material](addons/gdquest_prototype_material)
- [GDQuest Sparkly Bag](addons/gdquest_sparkly_bag)
- [GDQuest Theme Utils](addons/gdquest_theme_utils)
- [GDQuest Vector3D](addons/gdquest_3d_math_visualizer)
## ✓ Install
### Manual
1. Copy any `addons/PLUGIN_NAME` into `res://addons/PLUGIN_NAME`.
1. Enable the addon from `Project > Project Settings... > Plugins`.
### gd-plug
1. Install **gd-plug** using the Godot Asset Library.
1. Save the following code into the file `res://plug.gd` (create the file if necessary):
```gdscript
#!/usr/bin/env -S godot --headless --script
extends "res://addons/gd-plug/plug.gd"
func _plugging() -> void:
plug(
"git@github.com:GDQuest/godot-addons.git",
{include = ["addons/PLUGIN_NAME"]}
)
```
1. On Linux, make the `res://plug.gd` script executable with `chmod +x plug.gd`.
1. Using the command line, run `./plug.gd install` or `godot --headless --script plug.gd install`.