mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-22 23:17:26 -04:00
gate is not responding
This commit is contained in:
parent
83406350c0
commit
4fc2d7aeb9
7 changed files with 77 additions and 19 deletions
|
@ -4,6 +4,7 @@ class_name CommandEvents
|
|||
signal send_filehandle(filehandle_path: String)
|
||||
signal ext_texture_format(format: RenderingDevice.DataFormat)
|
||||
signal set_mouse_mode(mode: int)
|
||||
signal heartbeat()
|
||||
|
||||
|
||||
func send_filehandle_emit(filehandle_path: String) -> void:
|
||||
|
@ -16,3 +17,7 @@ func ext_texture_format_emit(format: RenderingDevice.DataFormat) -> void:
|
|||
|
||||
func set_mouse_mode_emit(mode: int) -> void:
|
||||
set_mouse_mode.emit(mode)
|
||||
|
||||
|
||||
func heartbeat_emit() -> void:
|
||||
heartbeat.emit()
|
||||
|
|
|
@ -8,6 +8,7 @@ signal gate_info_loaded(gate: Gate, is_cached: bool)
|
|||
signal gate_loaded(gate: Gate)
|
||||
signal gate_entered
|
||||
signal first_frame
|
||||
signal not_responding
|
||||
signal exit_gate
|
||||
|
||||
signal download_progress(url: String, body_size: int, downloaded_bytes: int)
|
||||
|
@ -62,6 +63,10 @@ func first_frame_emit() -> void:
|
|||
first_frame.emit()
|
||||
|
||||
|
||||
func not_responding_emit() -> void:
|
||||
not_responding.emit()
|
||||
|
||||
|
||||
func exit_gate_emit() -> void:
|
||||
current_search_query = ""
|
||||
current_gate_url = ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue