reverted app_id "fix" and fixed addon file location issues

This commit is contained in:
Yannik
2023-05-12 18:47:28 +02:00
parent ded4f14ab6
commit 7c09847331
6 changed files with 24 additions and 33 deletions

View File

@@ -1,11 +1,11 @@
@tool
extends EditorPlugin
const ExportPlugin = preload("res://addons/discord-sdk-gd/export.gd")
const ExportPlugin = preload("export.gd")
var loaded_exportplugin = ExportPlugin.new()
func _enter_tree():
add_autoload_singleton("updater_discordsdk", "res://addons/discord-sdk-gd/sdk_utility.gd")
add_autoload_singleton("updater_discordsdk", "sdk_utility.gd")
add_export_plugin(loaded_exportplugin)
func disable_plugin():