mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-24 20:17:31 -04:00
don't download config and classes
This commit is contained in:
parent
8a8954cbfa
commit
43cce4cb30
2 changed files with 2 additions and 4 deletions
|
@ -17,9 +17,9 @@ script_encryption_key=""
|
||||||
|
|
||||||
[preset.0.options]
|
[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"
|
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
|
binary_format/embed_pck=true
|
||||||
texture_format/bptc=false
|
texture_format/bptc=false
|
||||||
texture_format/s3tc=true
|
texture_format/s3tc=true
|
||||||
|
|
|
@ -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, "", "", "")
|
var gate = Gate.create(config_url, c_gate.title, c_gate.description, image_path, "", "", "")
|
||||||
gate_events.gate_info_loaded_emit(gate)
|
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.resource_pack = await FileDownloader.download(c_gate.resource_pack_url)
|
||||||
gate_events.gate_loaded_emit(gate)
|
gate_events.gate_loaded_emit(gate)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue