-
Posts
1,292 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by JonnyOThan
-
[1.8 - 1.12] KSPCommunityFixes - Bugfixes and QoL tweaks
JonnyOThan replied to Gotmachine's topic in KSP1 Mod Releases
Yeah, I was completely unaware that these kinds of fixes were possible until I saw the big memory leaks one. -
[1.8 - 1.12] KSPCommunityFixes - Bugfixes and QoL tweaks
JonnyOThan replied to Gotmachine's topic in KSP1 Mod Releases
The fix was actually a single line of code (after all the patching boilerplate overhead). The trick is figuring out exactly what and where to fix. -
[1.8.x-1.12.x] - RasterPropMonitor (adopted)
JonnyOThan replied to JonnyOThan's topic in KSP1 Mod Releases
Vulcan uses RPM + MAS and a lot of custom-built props and IVAs. -
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
As a temporary fix, you should be able to disable the distortion effects in the waterfall settings: https://github.com/post-kerbin-mining-corporation/Waterfall/blob/78da340533d0e50b69ff2878d2028b1863f682c8/GameData/Waterfall/WaterfallSettings.cfg#L27- 3,158 replies
-
- 1
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
Don't use the stock game's antialiasing. Use antialiasing from scatterer or TUFX instead. Temporal antialiasing does not suffer from this artifact, but use whatever looks good to you.- 3,158 replies
-
- 1
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
So, yep, Unity is helpfully combining those into a single copy, doing it before all the waterfall plumes are rendered, so then the waterfall distortion pass is erasing the plumes. Changing the texture name should fix it. Alternatively....maybe we can do something to waterfall to make sure that it draws the plumes before the grabpass and then the two mods could share and improve performance. You'd expect the minmus ice to refract engine plumes behind it after all!- 3,158 replies
-
- 4
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
Linx says it does for the ice on minmus, but he didn’t answer the question of the texture name.- 3,158 replies
-
- 1
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
Actually this does seem to be some kind of bad interaction with parallax. I took a renderdoc capture of burning the engine over minmus and kerbin. The plume actually renders normally in both captures, but in the minmus one the distortion effect overwrites the core of the plume because the color buffer that it's reading from was copied too early; it doesn't include the more recent plume draw calls. In the capture from kerbin, the screen buffer copy happens immediately before the distortion effects are run, so the temp buffer includes the plume. The difference in the minmus capture is that there's a ton of parallax stuff in between when the copy happens and when the plumes are drawn, and it changes where the color buffer copy is made. https://imgur.com/a/bDpO22w How much you want to bet parallax and waterfall are using the same name for their GrabPass texture? https://forum.unity.com/threads/multiple-grabpass-problem.132546/- 3,158 replies
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
My suspicion is eve/scatterer. I’ve seen this as well when using AVP and parallax at minmus. those waterfall effects depend on the depth buffer being set up a certain way and scatterer has some kind of interaction there..and AVP adds clouds to minmus but not an atmosphere.- 3,158 replies
-
[1.8.x-1.12.x] - RasterPropMonitor (adopted)
JonnyOThan replied to JonnyOThan's topic in KSP1 Mod Releases
Lower texture resolution would definitely affect it. I think you'd need to restart the game after changing it. -
KSA IVA Upgrade (Adopted) [some stock parts, BDB Apollo, SOCK]
JonnyOThan replied to JonnyOThan's topic in KSP1 Mod Releases
Yeah, probably want to report this on the FreeIVA github. I'll eventually be helping out with that one I think. -
KSA IVA Upgrade (Adopted) [some stock parts, BDB Apollo, SOCK]
JonnyOThan replied to JonnyOThan's topic in KSP1 Mod Releases
Yeah, I need to add a clear node button in there. The next version of RPM will have an option in the menus to clear the node from the target menu as well. The orange radio prop isn't for chatterer. That's the "recover vessel" button and it sounds like it's functioning normally. -
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
You're missing ModuleManager.- 3,158 replies
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
He didn't elaborate which ones though.- 3,158 replies
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
You're trying to use it with KSRSS, which doesn't really work out of the box.- 3,158 replies
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
I think this might actually be the case, at least for the global settings. But also make sure that the cfg appears as you expect it to in the modulemanager.configcache. You might want %BiomeBlackList instead of adding a new block. yeah, I'm pretty sure this code might be running before modulemanager actually has a chance to update the cfgs: https://github.com/Gameslinx/Tessellation/blob/f1be27526799a7e877268f0f1aade1626803e1e3/Loader.cs#L390- 3,158 replies
-
- 1
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
The settings.cfg file in the main folder can sometimes get sort of corrupted by mods. There is a version of this file you can get from the troubleshooting section of the first post in this thread. Try that one.- 3,158 replies
-
[1.8 - 1.12] KSPCommunityFixes - Bugfixes and QoL tweaks
JonnyOThan replied to Gotmachine's topic in KSP1 Mod Releases
Also make sure the file isn’t read only. It could be a permissions issue as well; the log might have more info. -
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
Can confirm, have also seen this a few times.- 3,158 replies
-
- 1
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
The best way to get help with this is to post your ksp.log file somewhere that we can look at it. Here's some info: KSP Logs- 3,158 replies
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
You're running KSP 1.2.9. The latest version is 1.12.3. You should probably also buy the game.- 3,158 replies
-
- 3
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
It’s probably lights. Linx has said that the terrain has to be tesselated for each light. Try turning down the max pixel lights in the settings.- 3,158 replies
-
- 1
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
@Vlados21 @JustDark Your best bet is to upload your ksp.log file somewhere and post the link to it. There are many active discord servers for getting support like that too.- 3,158 replies
-
- 1
-
[1.12.x] Parallax - PBR Terrain and Surface Objects [2.0.8]
JonnyOThan replied to Gameslinx's topic in KSP1 Mod Releases
Parallax shouldn't be having any effect on the scaled space rendering. Try removing parallax and see if it's the same.- 3,158 replies
-
- 1