From 11cebe9b6812aeedffecb2df7c0c4ceaf27e41a5 Mon Sep 17 00:00:00 2001 From: Xiexe Date: Fri, 28 May 2021 16:11:52 -0400 Subject: [PATCH] fix a tooltip --- Editor/XSToonInspector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Editor/XSToonInspector.cs b/Editor/XSToonInspector.cs index 40b0732..79b8865 100644 --- a/Editor/XSToonInspector.cs +++ b/Editor/XSToonInspector.cs @@ -625,7 +625,7 @@ private void DrawEmissionSettings(MaterialEditor materialEditor, Material materi } else { - materialEditor.TexturePropertySingleLine(new GUIContent("Emission Map (VRC Audio Link Packed)", "Emissive map. Each channel controls different audio link reactions. RGB = Lows, Mids, Highs"), _EmissionMap); + materialEditor.TexturePropertySingleLine(new GUIContent("Emission Map (VRC Audio Link Packed)", "Emissive map. Each channel controls different audio link reactions. RGB = Lows, Mids, Highs, Alpha Channel can be used to have extra masking as a way to combat aliasing"), _EmissionMap); materialEditor.TextureScaleOffsetProperty(_EmissionMap); materialEditor.ShaderProperty(_UVSetEmission, new GUIContent("UV Set", "The UV set to use for the Emission Map"), 2); materialEditor.ShaderProperty(_EmissionToDiffuse, new GUIContent("Tint To Diffuse", "Tints the emission to the Diffuse Color"), 2);