Is a collection of utilities dealing with repeating patterns that we discovered in time.
They're not necessarily related to each other, and some are generic while others are very specific.
The collection includes:
- A post import script for GLTF resources that cleans up any inconsistencies with naming conventions and adds support for
AnimatableBody3D
convention via the-anim
suffix. - A utility library called
SparklyBagUtils
.
Compatible: Godot
>= v4.0
- Copy the contents of this folder into
res://addons/gdquest_sparkly_bag/
. - Profit.
- 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/gdquest_sparkly_bag"]}
)
- 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
.