mirror of
				https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
				synced 2025-11-04 08:35:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			443 B
		
	
	
	
		
			GDScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			443 B
		
	
	
	
		
			GDScript
		
	
	
		
			Executable File
		
	
	
	
	
## This is a Debug Node wich will show some usefull info and buttons/input
 | 
						|
## 
 | 
						|
## The DiscordRPC Debug Node will show info about the current values of its variables and some buttons to change them.
 | 
						|
##
 | 
						|
## @tutorial: https://github.com/vaporvee/discord-rpc-godot/wiki
 | 
						|
@tool
 | 
						|
extends Node
 | 
						|
 | 
						|
func _ready() -> void:
 | 
						|
	const DebugNodeGroup: PackedScene = preload("res://addons/discord-rpc-gd/nodes/Debug.tscn")
 | 
						|
	add_child(DebugNodeGroup.instantiate())
 |