Files
Simplaudio/addons/godot-yt-dlp/godot_yt_dlp.gd
T
notdraimdev 68e8a4223f Simplaudio.
2024-09-09 09:17:29 +02:00

14 lines
226 B
GDScript

@tool
extends EditorPlugin
const AUTOLOAD_NAME = "YtDlp"
func _enter_tree():
add_autoload_singleton(AUTOLOAD_NAME, "res://addons/godot-yt-dlp/src/yt_dlp.gd")
func _exit_tree():
remove_autoload_singleton(AUTOLOAD_NAME)