Skip to content

Commit ea1f0ff

Browse files
committed
add updated scatterer for volclouds v5
1 parent bb985fd commit ea1f0ff

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Discord support server: https://discord.gg/vBDzZAq3AF.
44

55
Please always post your [KSP.log file](https://gist.github.com/JonnyOThan/04c2074b56f78e56d115621effee30f9) when reporting issues.
66

7+
## Unreleased
8+
9+
- Add patched version of scatterer for volumetric clouds V5
10+
711
## 0.9.4.3 - 2025-09-08
812

913
### Notable Changes

KerbalVR_Mod/KerbalVR-InstallCheck/InstallCheck.cs

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,14 @@ public void Awake()
4242
{
4343
Debug.Log("[KerbalVR] InstallCheck Awake");
4444

45+
#if !DEBUG
4546
CheckVREnabled();
4647
CheckDependencies();
4748
CheckOptionalMods();
4849
CheckScatterer();
4950
CheckEVE();
5051
CheckRequiredFiles();
52+
#endif
5153
}
5254

5355
private static void CheckVREnabled()
@@ -166,13 +168,15 @@ private static void CheckScatterer()
166168
new Version(0, 859, 0, 0), // volclouds v3
167169
new Version(0, 878, 2, 0), // VR patch on latest publicly available
168170
new Version(0, 880, 2, 0), // VR patch on volumetrics V4
171+
new Version(0, 990, 1, 0), // VR patch on volumetrics V5
169172
},
170173
new Dictionary<Version, string>()
171174
{
172-
{new Version(0, 878, 0, 0), "Install Scatterer from the Optional Mods folder"},
173-
{new Version(0, 878, 1, 0), "Install Scatterer from the Optional Mods folder"},
174-
{new Version(0, 880, 0, 0), "Install the files from Optional Mods/VolumetricClouds-v4"},
175-
{new Version(0, 880, 1, 0), "Install the files from Optional Mods/VolumetricClouds-v4"},
175+
{ new Version(0, 878, 0, 0), "Install Scatterer from the Optional Mods folder" },
176+
{ new Version(0, 878, 1, 0), "Install Scatterer from the Optional Mods folder" },
177+
{ new Version(0, 880, 0, 0), "Install the files from Optional Mods/VolumetricClouds-v4" },
178+
{ new Version(0, 880, 1, 0), "Install the files from Optional Mods/VolumetricClouds-v4" },
179+
{ new Version(0, 900, 0, 0), "Install the files from Optional Mods/VolumetricClouds-v5" },
176180
});
177181
}
178182

@@ -186,6 +190,7 @@ private static void CheckEVE()
186190
new Version(2, 1), // volclouds v2
187191
new Version(2, 2, 1, 0), // volclouds v3
188192
new Version(2, 3, 3, 1), // VR patch on volclouds v4
193+
new Version(3, 1, 0, 0), // volumetrics V5 (works fine)
189194
},
190195
new Dictionary<Version, string>()
191196
{

KerbalVR_Mod/Optional Mods/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Scatterer
1+
# Scatterer (non-volumetric clouds)
22

33
Install as normal, then copy the Scatterer directory from KerbalVR/Optional Mods on top of the one in your GameData directory and overwrite the existing files.
44

@@ -12,6 +12,7 @@ For reference, release dates of each version are below:
1212
* v2 - May 21 through June 7, 2023
1313
* v3 - August 20 through 26, 2023
1414
* v4 - December 22, 2023 through July 16, 2024
15+
* v5 - September 28, 2025
1516

1617
# Optional VR patches
1718

Binary file not shown.

0 commit comments

Comments
 (0)