From c3080e33784bcad80f39017fbe7d4bf68c7bdfa6 Mon Sep 17 00:00:00 2001 From: landervr <31851431+CpnWaffle@users.noreply.github.com> Date: Tue, 3 Dec 2024 17:00:40 +0100 Subject: [PATCH] Adjust VoxelGI gizmo opacity --- editor/plugins/gizmos/voxel_gi_gizmo_plugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/plugins/gizmos/voxel_gi_gizmo_plugin.cpp b/editor/plugins/gizmos/voxel_gi_gizmo_plugin.cpp index 0123b9d84a..749caac73a 100644 --- a/editor/plugins/gizmos/voxel_gi_gizmo_plugin.cpp +++ b/editor/plugins/gizmos/voxel_gi_gizmo_plugin.cpp @@ -46,10 +46,10 @@ VoxelGIGizmoPlugin::VoxelGIGizmoPlugin() { create_material("voxel_gi_material", gizmo_color); // This gizmo draws a lot of lines. Use a low opacity to make it not too intrusive. - gizmo_color.a = 0.1; + gizmo_color.a = 0.03; create_material("voxel_gi_internal_material", gizmo_color); - gizmo_color.a = 0.05; + gizmo_color.a = 0.025; create_material("voxel_gi_solid_material", gizmo_color); create_icon_material("voxel_gi_icon", EditorNode::get_singleton()->get_editor_theme()->get_icon(SNAME("GizmoVoxelGI"), EditorStringName(EditorIcons)));