added discord sdk and stuff

This commit is contained in:
2024-01-26 16:21:39 +01:00
parent 3c981e31f8
commit e0b0190121
31 changed files with 869 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
## This is a Debug Node wich will show some usefull info and buttons/input
##
## The DiscordSDK Debug Node will show info about the current values of its variables and some buttons to change them.
##
## @tutorial: https://github.com/vaporvee/discord-sdk-godot/wiki
@tool
extends Node
func _ready() -> void:
const DebugNodeGroup: PackedScene = preload("res://addons/discord-sdk-gd/nodes/Debug.tscn")
add_child(DebugNodeGroup.instantiate())