From 822cdecce97d18a7ef7b3c746de35b0581005210 Mon Sep 17 00:00:00 2001 From: Noah Pilarski Date: Tue, 28 Jun 2022 02:24:43 -0400 Subject: [PATCH] Fix heightmap stretch on title screen --- NewHorizons/Handlers/TitleSceneHandler.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/NewHorizons/Handlers/TitleSceneHandler.cs b/NewHorizons/Handlers/TitleSceneHandler.cs index 52b82def..242590a4 100644 --- a/NewHorizons/Handlers/TitleSceneHandler.cs +++ b/NewHorizons/Handlers/TitleSceneHandler.cs @@ -87,6 +87,7 @@ namespace NewHorizons.Handlers heightMap.heightMap = body.Config.HeightMap.heightMap; heightMap.maxHeight = size; heightMap.minHeight = body.Config.HeightMap.minHeight * size / body.Config.HeightMap.maxHeight; + heightMap.stretch = body.Config.HeightMap.stretch; } if (body.Config.Atmosphere?.clouds?.texturePath != null) {