From 3cd649b80539591c28176ce9afcd0240081c67da Mon Sep 17 00:00:00 2001 From: kurk070ff <108901106+kurk070ff@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:09:36 +0300 Subject: [PATCH] Fix inaccurate comment in custom_ui_material.wgsl shader (#16846) # Objective - Modify a comment in the shader file to describe what the shader actually does - Fixes #16830 ## Solution - Changed the comment. ## Testing - Testing is not relevant to fixing comments (as long as the comment is accurate) --------- Co-authored-by: Freya Pines Co-authored-by: Freya Pines --- assets/shaders/custom_ui_material.wgsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/shaders/custom_ui_material.wgsl b/assets/shaders/custom_ui_material.wgsl index 2b7eb01e92..ef000aef7e 100644 --- a/assets/shaders/custom_ui_material.wgsl +++ b/assets/shaders/custom_ui_material.wgsl @@ -1,4 +1,4 @@ -// This shader draws a circle with a given input color +// Draws a progress bar with properties defined in CustomUiMaterial #import bevy_ui::ui_vertex_output::UiVertexOutput @group(1) @binding(0) var color: vec4;