From b3fdc1317f9995ed6416929658bdf5a40ac7cd4a Mon Sep 17 00:00:00 2001 From: xen-42 Date: Fri, 4 Oct 2024 14:45:26 -0400 Subject: [PATCH] Document fog alpha doing nothing --- NewHorizons/External/Modules/BrambleModule.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NewHorizons/External/Modules/BrambleModule.cs b/NewHorizons/External/Modules/BrambleModule.cs index 3351c6f5..b10c984f 100644 --- a/NewHorizons/External/Modules/BrambleModule.cs +++ b/NewHorizons/External/Modules/BrambleModule.cs @@ -41,11 +41,12 @@ namespace NewHorizons.External.Modules /// /// The color of the fog inside this dimension. /// Leave blank for the default grayish color: (84, 83, 73) + /// The alpha value has no effect of the fog: Use fogDensity instead! /// public MColor fogTint; /// - /// The density of the fog inside this dimension. The default is 6. + /// The density of the fog inside this dimension. The default is 6. If you want no fog, set this to 0. /// [DefaultValue(6f)] public float fogDensity = 6f;