-Skipp- wrote:I've been using X:R Nebulas and X:R Planets since they became available. Unfortunately the mod is not compatible with 4.0 beta, and it makes planets semi-transparent so you can see through them.
I'm guessing the nebula/space background textures overlap the planet textures so you get the effect half the planet is missing (screenshot below).
This affects the vanilla planets as well and seems to be related to the argon flare_bg_mesh in the file:
Code: Select all
X Rebirth\extensions\XR_Nebulas\assets\environments\cluster\cluster_b.xml
If you take the original code
Code: Select all
<?xml version="1.0"?>
<diff>
<!--Remove Argon Flare_bg_mesh-->
<remove sel="/components/component/connections/connection[@name='Connection14']" />
</diff>
And comment out that single line, like so:
Code: Select all
<?xml version="1.0"?>
<diff>
<!--Remove Argon Flare_bg_mesh-->
<!--<remove sel="/components/component/connections/connection[@name='Connection14']" />-->
</diff>
All should be well and fixed for the planet and nebula textures, though obviously this brings back the flare in Albion that I'd like to get rid of. I do not know why this bug has occurred nor do I remember the modding framework enough to fix it
while also keeping the flare removed.