-
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
Hmmm... I'll have to look into why. On a side note, the atmosphere is ready to be taken a look at. I still need a better space transition, and the scaled space side isn't implemented, but so far, I think it looks pretty nice. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
You have to take your unity shader (simple/surface/cg) and compile it in unity, then take that and inject it into the Material( String shaderText ) constructor (http://docs.unity3d.com/ScriptReference/Material-ctor.html) and then you can get the shader from it. I embed by shaders as a resource, but you could very-well use a text file. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Awesome! Thanks! This is a huge relief. I was afraid afraid I would cause huge FPS differences, but I guess I'm still in the clear -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Thanks! So... I need some feedback, especially from people with less than stellar graphics cards... I need performance metrics (anecdotal is fine if compared to the "mainline" release of EVE)! I have a fairly beefy laptop, and can't seem to get KSP to phase it, so I need your help in determining if the new shaders are overkill or appropriate. I'm doing some pretty hefty computation in them, so I need to make sure they will suffice for older computers as well So if some brave souls can install the current overhaul nightly (https://github.com/rbray89/EnvironmentalVisualEnhancements/blob/Overhaul/x64-Release.zip?raw=true) and give it a whirl and report back (FPS, better/worse than current release & by how much, Machine specs) I'd very much appreciate it -
These are the texture format types available for use. Given that I can't find ANY documentation on the use of EAC_RG (1-byte encoded), I'm not particularily inclined to use it. Note that while DXT5 can't fully utilize the bytes it has per pixel for the AG component, under the right conditions it comes pretty close (either zeroing or duplicating the values... can't remember which)
-
[WIP][1.0.5]* RSS Visual Enhancements (RVE)
rbray89 replied to pingopete's topic in KSP1 Mod Development
Scaled space shadows and detailing fixed. all other shaders are now detailed in the same fashion. There will be a minor issue that creates a seam until I add in some mitigation code for it. -
[WIP][1.0.5]* RSS Visual Enhancements (RVE)
rbray89 replied to pingopete's topic in KSP1 Mod Development
I changed the shaders for clouds to render detail very differently... no more overlap. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
The first are a known issue. They only exist between scene transitions. The "Not readable" issues are from the DDS loader. It assumes textures don't need to be readable and makes them unreadable to mods. This will cause you problems with the volumetric cloud cover. -
[WIP][1.0.5]* RSS Visual Enhancements (RVE)
rbray89 replied to pingopete's topic in KSP1 Mod Development
Sorry, I meant in my shader -
[WIP][1.0.5]* RSS Visual Enhancements (RVE)
rbray89 replied to pingopete's topic in KSP1 Mod Development
I think I see the issue... They might be "working" but not even close to being aligned with the clouds, and likely very fuzzy? -
[WIP][1.0.5]* RSS Visual Enhancements (RVE)
rbray89 replied to pingopete's topic in KSP1 Mod Development
Any ideas why the detail for cloud shadows broke? I can't think of a reason why they should have... I was actually thinking about the detail application recently, and think I have a solution in the works. -
[WIP][1.0.5]* RSS Visual Enhancements (RVE)
rbray89 replied to pingopete's topic in KSP1 Mod Development
Figured out why the shadows are off, Fixed it in the mainline. -
[WIP][1.0.5]* RSS Visual Enhancements (RVE)
rbray89 replied to pingopete's topic in KSP1 Mod Development
Alright, Might have an idea of why the shadows are off... Any way I can put a planet on an incline to the sun the way RSS has without actually loading up RSS? -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
Thanks guys! It's been hard to find the time, but we are slowly getting there. I Just polished off the shadows, so next will be the atmosphere and then the ocean. -
[WIP][1.0.5]* RSS Visual Enhancements (RVE)
rbray89 replied to pingopete's topic in KSP1 Mod Development
Added Cloud detail to shadows. -
BROKEN [0.90] TextureReplacer 2.1.2 (20.12.2014)
rbray89 replied to shaw's topic in KSP1 Mod Releases
I thought KSP used _NRM? If it is only *NRM then that I can fix easily. Currently there is not a way aside from adding to the list, but it should be simple enough for me to add a regex check there as well. -
BROKEN [0.90] TextureReplacer 2.1.2 (20.12.2014)
rbray89 replied to shaw's topic in KSP1 Mod Releases
Technically, ATM 3-8 is designed to work that way. We override the KSP resource loaders, and in the instance of loading textures in directories not managed by configs, we simply load and compress (but no locking of reading). -
I have to agree with RoverDude. As a modder, I chose the MIT license as I myself have needed in the past to use code commercially, and would welcome any other commercial product (and open source) to use my code to benefit their own projects. Anyone who makes a living developing code can attest to how frustrating encountering the GNU or GPL license can be. That being said, in the context of the KSP community, I'd be pretty miffed if someone came along, forked my repo, and started taking it in a direction that I hadn't intended, or tries to use it to "compete" with my original work. I'd say that we should all strive to abide by common sense (and courtesy) to recognize that modders have a vision in mind with their creative work and to try to honor their wishes when it comes to KSP.
-
Improve KSP sense of scale with this one simple trick
rbray89 replied to Algiark's topic in KSP1 Mods Discussions
So far the effect in the EVE overhaul is in it's infancy, and requires that I replace almost all of KSP's existing shaders with those that have the "RenderType" tag in them. It uses the depth buffer, geometry, and some math to create a color overlay. I have a couple ideas on how to improve the effect, but still need to actually get some time to work on the features. -
[1.1.2][1-1-2] May 13-2016 EnvironmentalVisualEnhancements
rbray89 replied to rbray89's topic in KSP1 Mod Releases
But it still troubles me, so I must troubleshoot. What OS and KSP architecture (x86 or x64) do you use?