From 0433495dd44cde2886c4a450c8c04dff737d3c54 Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Mon, 24 Apr 2023 18:36:51 -0700 Subject: [PATCH] no leave the formatting pls --- NewHorizons/Builder/General/AmbientLightBuilder.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/NewHorizons/Builder/General/AmbientLightBuilder.cs b/NewHorizons/Builder/General/AmbientLightBuilder.cs index 4ffc6130..68eea494 100644 --- a/NewHorizons/Builder/General/AmbientLightBuilder.cs +++ b/NewHorizons/Builder/General/AmbientLightBuilder.cs @@ -18,18 +18,18 @@ namespace NewHorizons.Builder.General var light = lightGO.GetComponent(); /* - * R is inner radius - * G is shell (1 for shell, 0 for no shell) - * B is always 1 - * A is falloff exponent - */ + * R is inner radius + * G is shell (1 for shell, 0 for no shell) + * B is always 1 + * A is falloff exponent + */ light.intensity = config.intensity; light.range = config.outerRadius ?? surfaceSize * 2; var innerRadius = config.innerRadius ?? surfaceSize; innerRadius = Mathf.Sqrt(innerRadius / light.range); var shell = config.isShell ? 1f : 0f; - light.color = new Color(innerRadius, shell, 1f, 0.0225f /*from timber hearth*/); + light.color = new Color(innerRadius, shell, 1f, 0.0225f/*from timber hearth*/); if (config.tint != null) {