Jump to content

JonnyOThan

Members
  • Posts

    1,292
  • Joined

  • Last visited

Everything posted by JonnyOThan

  1. Yeah, I was completely unaware that these kinds of fixes were possible until I saw the big memory leaks one.
  2. 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.
  3. Vulcan uses RPM + MAS and a lot of custom-built props and IVAs.
  4. 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
  5. 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.
  6. 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!
  7. Linx says it does for the ice on minmus, but he didn’t answer the question of the texture name.
  8. 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/
  9. 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.
  10. Lower texture resolution would definitely affect it. I think you'd need to restart the game after changing it.
  11. Yeah, probably want to report this on the FreeIVA github. I'll eventually be helping out with that one I think.
  12. 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.
  13. You're trying to use it with KSRSS, which doesn't really work out of the box.
  14. 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
  15. 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.
  16. Also make sure the file isn’t read only. It could be a permissions issue as well; the log might have more info.
  17. 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
  18. You're running KSP 1.2.9. The latest version is 1.12.3. You should probably also buy the game.
  19. 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.
  20. @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.
  21. Parallax shouldn't be having any effect on the scaled space rendering. Try removing parallax and see if it's the same.
×
×
  • Create New...