9 lines
455 B
GDScript3
9 lines
455 B
GDScript3
extends "res://addons/gd-plug/plug.gd"
|
|
|
|
func _plugging():
|
|
# Declare plugins with plug(repo, args)
|
|
# For example, clone from github repo("user/repo_name")
|
|
# plug("imjp94/gd-YAFSM") # By default, gd-plug will only install anything from "addons/" directory
|
|
# Or you can explicitly specify which file/directory to include
|
|
# plug("imjp94/gd-YAFSM", {"include": ["addons/"]}) # By default, gd-plug will only install anything from "addons/" directory
|
|
pass
|