From 68316876eb13c199c27fef6c67dbc33dc7c1068e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Santilio?= Date: Mon, 24 Aug 2020 13:42:09 +0200 Subject: [PATCH] --- .../file-editor/scripts/FileEditorButton.gd | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 addons/file-editor/scripts/FileEditorButton.gd diff --git a/addons/file-editor/scripts/FileEditorButton.gd b/addons/file-editor/scripts/FileEditorButton.gd deleted file mode 100644 index 95b3ac3..0000000 --- a/addons/file-editor/scripts/FileEditorButton.gd +++ /dev/null @@ -1,19 +0,0 @@ -tool -extends ToolButton - -var fileditor_workspace -var fileditor - -func _ready(): - connect("pressed",self,"show_fileditor") - -func show_fileditor(): - fileditor_workspace.get_children()[0].hide() - fileditor_workspace.get_children()[1].hide() - fileditor_workspace.get_children()[2].hide() - fileditor_workspace.add_child(fileditor) - fileditor.show() - -func load_values(fi, fe): - fileditor_workspace = fi - fileditor = fe