-
Posts
2,719 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by rbray89
-
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Try removing the old install completely, then installing the mod. This sounds like it is a config file issue. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Argh... I thought I figured out how to get rid of that... It is an unfortunate side effect from the use of Atan2 in the shader, and the mipmaps go crazy from it. I'll keep working to see if I can fix it. I had some really interesting ideas over the holidays, and figure that I might be able to make some big improvements to solve the issues like this. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
You may have to delete your old config file. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Haha... New release. GUI fixes/enhancements. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
The radius's can be altered. You shouldn't have any trouble with them with the GUI. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
That should be taken care of. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Ok, so I updated the new release. The default is the sphere-mapped shader, with the memory intensive cubic as an option in the common-config. As per Bac9's suggestion, I'm looking into dynamic cloud textures using perlin noise and still looking into volumetric clouds. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Yeah, I just started looking into it. I'm a tad afraid it might be too expensive on the GPU. I actually moved a lot into it whenever I can, so If I can shove it in there, I will. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
So I'm working on offering a selection between cubic and spherical mapping. This will be in the next update and should solve all the memory issues, but will of course not look quite as nice. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Ok, I reduced memory consumption and fixed the bump texture mapping so that it should tile like this (for real I think) -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Ok, new release. Fixed the debug statements, changed the detail scale so the patterns don't show quite as badly. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Ah crud... missed a debug print... I'll fix it now. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
That is what the detail and bump map use. This is actually quite common. Once you start getting close, the detail kicks in to make the texture have more definition. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Link Fixed. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
New Release is out! May look minor, but the poles are now really fixed! Very Slight startup delay due to cubic texture conversion. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
I'll have to take a look. Thanks! -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
You need to specify a texture in the texture box. look at some of the other layers for examples. -
If you zoom up close does it get better? This is likely due to the Mipmap issue. When they aren't generated, the graphics card has to try and do pixel sampling on a large texture, and it usually sucks, as it just picks the closest pixel, whereas in a mipmap, the texture is resized and filtered so the graphics doesn't have to do this single pixel sample.
-
So I have been seeing a LOT of misinformation on the forums regarding how KSP currently (.23) handles textures/formats. PNGs: PNGs are compressed in memory, resulting in smaller, but (barely noticable) lower quality textures in-game. Mipmaps are NOT generated for these, so when viewed at a distance, they tend to "shimmer" TGAs: TGAs are NOT compressed in memory, resulting in huge image size. Mipmaps ARE generated, so they don't have the same problem as PNGs. MBMs: MBMs MAY be compressed, but only if the texture type is set to regular texture. Normal maps are not compressed, to preserve correct normals. Mipmaps are generated regardless. MBMs cannot be read in-game due to the texture importing setting Squad uses. As you can see, there is a LOT of inconsistency in the texture loading Squad has implemented. By design or not, I couldn't tell you, but when modding, choose what works best for you. Happy Texturing!
-
Which "squad pack"? If it is MBM or PNG based, it won't. Compression right now barely does anything (~2MB) for a stock install, and that is only because there are a few leftover TGAs. This mod really only helps with uncompressed TGA textures ATM. This will change with the next release of this mod though.
-
I think some of the texture may have been renamed/converted to different file types. You may want to make sure none of the files have been duplicated. I think the extra memory usage comes from the performance enhancements. Often you can trade loading time and FPS for memory depending on implementation.