start von Commits
This commit is contained in:
commit
f35baec2ee
80 changed files with 1747 additions and 0 deletions
13
addons/discord-rpc-gd/nodes/discord_autoload.gd
Normal file
13
addons/discord-rpc-gd/nodes/discord_autoload.gd
Normal file
|
@ -0,0 +1,13 @@
|
|||
## This is a GDscript Node wich gets automatically added as Autoload while installing the addon.
|
||||
##
|
||||
## It can run in the background to comunicate with Discord.
|
||||
## You don't need to use it. If you remove it make sure to run [code]DiscordRPC.run_callbacks()[/code] in a [code]_process[/code] function.
|
||||
##
|
||||
## @tutorial: https://github.com/vaporvee/discord-rpc-godot/wiki
|
||||
extends Node
|
||||
|
||||
func _ready() -> void:
|
||||
pass
|
||||
|
||||
func _process(_delta) -> void:
|
||||
DiscordRPC.run_callbacks()
|
Loading…
Add table
Add a link
Reference in a new issue