remove cache on start

This commit is contained in:
Nordup 2023-04-02 01:44:08 +03:00
parent b167b500c0
commit 353a01fc2d
2 changed files with 6 additions and 2 deletions

View file

@ -49,7 +49,7 @@ custom_features=""
export_filter="all_resources" export_filter="all_resources"
include_filter="" include_filter=""
exclude_filter="" exclude_filter=""
export_path="../../../Builds/TheGates.exe" export_path="../../Builds/TheGates.exe"
encryption_include_filters="" encryption_include_filters=""
encryption_exclude_filters="" encryption_exclude_filters=""
encrypt_pck=false encrypt_pck=false
@ -58,7 +58,7 @@ script_encryption_key=""
[preset.1.options] [preset.1.options]
custom_template/debug="C:/Users/Nordup/Documents/GodotProjects/godot-the-gates/bin/godot.windows.template_debug.x86_64.exe" custom_template/debug="C:/Users/Nordup/Documents/GodotProjects/the-gates/bin/godot.windows.template_debug.x86_64.exe"
custom_template/release="" custom_template/release=""
debug/export_console_script=1 debug/export_console_script=1
binary_format/embed_pck=false binary_format/embed_pck=false

View file

@ -3,6 +3,10 @@ extends Node
var folder: String = "user://gates_data" var folder: String = "user://gates_data"
func _ready() -> void:
FileTools.remove_recursive(folder)
func download(url: String) -> String: func download(url: String) -> String:
var save_path = folder + "/" + url.md5_text() + "." + url.get_file().get_extension() var save_path = folder + "/" + url.md5_text() + "." + url.get_file().get_extension()
if FileAccess.file_exists(save_path): if FileAccess.file_exists(save_path):