From 9d86b9df029ca51eba12f058820409338c4328e2 Mon Sep 17 00:00:00 2001 From: notdraimdev Date: Mon, 9 Sep 2024 23:10:02 +0200 Subject: [PATCH] Small changes --- Main.gdshader | 2 +- PlaylistDisplay.tscn | 2 +- playlist_display.gd | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Main.gdshader b/Main.gdshader index 97782dd..68b12e5 100644 --- a/Main.gdshader +++ b/Main.gdshader @@ -10,7 +10,7 @@ void vertex() { void fragment() { vec4 as = texture(screen_texture,SCREEN_UV); vec4 a2s = texture(TEXTURE,UV); - vec4 fart = a2s * (0.1 + as.bgra); + vec4 fart = a2s * (0.1 + as.brga); COLOR = fart * intensity; } diff --git a/PlaylistDisplay.tscn b/PlaylistDisplay.tscn index 8ca9e2b..5577120 100644 --- a/PlaylistDisplay.tscn +++ b/PlaylistDisplay.tscn @@ -53,7 +53,7 @@ autowrap_mode = 0 [node name="Directory" type="Label" parent="HSplitContainer/VBoxContainer"] layout_mode = 2 -text = "directory not found" +text = "Directory" label_settings = SubResource("LabelSettings_ky8oc") clip_text = true diff --git a/playlist_display.gd b/playlist_display.gd index 64a182f..3ed238e 100644 --- a/playlist_display.gd +++ b/playlist_display.gd @@ -39,7 +39,7 @@ func CorrectlyName(): if !PlaylistLocation == "": directory.text = PlaylistLocation else: - directory.text = "directory not found" + directory.text = "Directory not found" push_error("Directory not found!")