better logs and event names

This commit is contained in:
Nordup 2024-10-26 02:25:54 +04:00
parent 6528dffe57
commit 83406350c0
6 changed files with 22 additions and 19 deletions

View file

@ -45,7 +45,7 @@ func create_external_texture() -> void:
ext_texure = ExternalTexture.new()
var err = ext_texure.create(t_format, t_view)
if err: Debug.logerr("Cannot create external texture")
else: Debug.logclr("External texture created", Color.AQUAMARINE)
else: Debug.logclr("External texture created", Color.DIM_GRAY)
func send_filehandle(filehandle_path: String) -> void: