Skip to content

Latest commit

 

History

History

gdquest_theme_utils

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

GDQuest Theme Utils

Is a collection of utilities dealing with themes for developing consistent plugin UIs.

✓ Install

Manual

  1. Copy the contents of this folder into res://addons/gdquest_theme_utils/.
  2. Profit.

gd-plug

  1. Install gd-plug using the Godot Asset Library.
  2. 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_theme_utils"]}
	)
  1. On Linux, make the res://plug.gd script executable with chmod +x plug.gd.
  2. Using the command line, run ./plug.gd install or godot --headless --script plug.gd install.

Notes

These functions are extracted from theme utils in Godot Tours.