diff --git a/project/export_presets.cfg b/project/export_presets.cfg index 69879e2..0daeeb2 100644 --- a/project/export_presets.cfg +++ b/project/export_presets.cfg @@ -17,9 +17,9 @@ script_encryption_key="" [preset.0.options] -custom_template/debug="/home/nordup/projects/godot/the-gates-folder/the-gates/bin/godot.linuxbsd.template_debug.x86_64" +custom_template/debug="" custom_template/release="/home/nordup/projects/godot/the-gates-folder/the-gates/bin/godot.linuxbsd.template_release.x86_64" -debug/export_console_script=2 +debug/export_console_script=1 binary_format/embed_pck=true texture_format/bptc=false texture_format/s3tc=true diff --git a/project/the_gates/scripts/loading/gate_loader.gd b/project/the_gates/scripts/loading/gate_loader.gd index 58ee9b3..21c3fa5 100644 --- a/project/the_gates/scripts/loading/gate_loader.gd +++ b/project/the_gates/scripts/loading/gate_loader.gd @@ -18,7 +18,5 @@ func load_gate(config_url: String) -> void: var gate = Gate.create(config_url, c_gate.title, c_gate.description, image_path, "", "", "") gate_events.gate_info_loaded_emit(gate) - gate.godot_config = await FileDownloader.download(c_gate.godot_config_url) - gate.global_script_class = await FileDownloader.download(c_gate.global_script_class_url) gate.resource_pack = await FileDownloader.download(c_gate.resource_pack_url) gate_events.gate_loaded_emit(gate)