Skip to content

Commit bdfc343

Browse files
committedOct 26, 2017
Fix local space intensity and IVAIntensityCurve
1 parent 26a2a2b commit bdfc343

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/Kopernicus.Components/Kopernicus.Components.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<AssemblyName>Kopernicus.Components</AssemblyName>
1212
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<LangVersion>6</LangVersion>
1415
</PropertyGroup>
1516
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1617
<DebugSymbols>true</DebugSymbols>

‎src/Kopernicus.Components/KopernicusStar.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ void LateUpdate()
285285
if (HighLogic.LoadedSceneIsFlight && iva?.GetComponent<Light>())
286286
{
287287
iva.GetComponent<Light>().color = shifter.IVASunColor;
288-
iva.GetComponent<Light>().intensity = shifter.IVASunIntensity;
288+
iva.GetComponent<Light>().intensity = shifter.ivaIntensityCurve.Evaluate((Single)Vector3d.Distance(sun.position, target.position));
289289
}
290290

291291
// Set SunFlare color
@@ -312,7 +312,6 @@ void LateUpdate()
312312
if (FlightGlobals.currentMainBody == null || FlightGlobals.currentMainBody == sun)
313313
{
314314
localTime = 1f;
315-
light.intensity = scaledSunLight.intensity;
316315
}
317316
else
318317
{
@@ -325,7 +324,7 @@ void LateUpdate()
325324
Single fadeStartAtAlt = horizonScalar + fadeStart * dayNightRatio;
326325
Single fadeEndAtAlt = horizonScalar - fadeEnd * dayNightRatio;
327326
localTime = Vector3.Dot(-FlightGlobals.getUpAxis(localSpace), transform.forward);
328-
light.intensity = Mathf.Lerp(0f, scaledSunLight.intensity, Mathf.InverseLerp(fadeEndAtAlt, fadeStartAtAlt, localTime));
327+
light.intensity = Mathf.Lerp(0f, light.intensity, Mathf.InverseLerp(fadeEndAtAlt, fadeStartAtAlt, localTime));
329328
}
330329
}
331330

0 commit comments

Comments
 (0)
Please sign in to comment.