mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-23 08:17:34 -04:00
ext_texture_format and first_frame_drawn for swapchaing copying
This commit is contained in:
parent
644a8bb969
commit
78ad658f06
7 changed files with 151 additions and 49 deletions
|
@ -2,6 +2,8 @@ extends Resource
|
|||
class_name CommandEvents
|
||||
|
||||
signal send_filehandle(filehandle_path: String)
|
||||
signal ext_texture_format(format: RenderingDevice.DataFormat)
|
||||
signal first_frame_drawn()
|
||||
signal set_mouse_mode(mode: int)
|
||||
|
||||
|
||||
|
@ -9,5 +11,13 @@ func send_filehandle_emit(filehandle_path: String) -> void:
|
|||
send_filehandle.emit(filehandle_path)
|
||||
|
||||
|
||||
func ext_texture_format_emit(format: RenderingDevice.DataFormat) -> void:
|
||||
ext_texture_format.emit(format)
|
||||
|
||||
|
||||
func first_frame_drawn_emit() -> void:
|
||||
first_frame_drawn.emit()
|
||||
|
||||
|
||||
func set_mouse_mode_emit(mode: int) -> void:
|
||||
set_mouse_mode.emit(mode)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue