Compare commits
2 Commits
2ecf17400e
...
5beba9f9f4
Author | SHA1 | Date |
---|---|---|
Jarrod Doyle | 5beba9f9f4 | |
Jarrod Doyle | a0790f50bd |
|
@ -690,13 +690,13 @@ public class WorldRep : IChunk
|
|||
if (dynamicLight)
|
||||
{
|
||||
DynamicLightCount++;
|
||||
Lights.Add(data);
|
||||
}
|
||||
else
|
||||
{
|
||||
Lights.Insert(LightCount, data);
|
||||
LightCount++;
|
||||
}
|
||||
|
||||
Lights.Add(data);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@ public class Light
|
|||
public int ObjId;
|
||||
public int LightTableIndex;
|
||||
public bool Anim;
|
||||
public bool Dynamic;
|
||||
|
||||
public WorldRep.LightTable.LightData ToLightData(float lightScale)
|
||||
{
|
||||
|
|
|
@ -310,6 +310,7 @@ public class LightMapper
|
|||
ObjId = id,
|
||||
LightTableIndex = propAnimLight.LightTableLightIndex,
|
||||
Anim = true,
|
||||
Dynamic = propAnimLight.Dynamic,
|
||||
SpotlightInnerAngle = -1f,
|
||||
};
|
||||
|
||||
|
@ -324,10 +325,10 @@ public class LightMapper
|
|||
light.ApplyTransforms(vhotLightPos, vhotLightDir, translate, rotate, scale);
|
||||
|
||||
_lights.Add(light);
|
||||
lightTable.AddLight(light.ToLightData(32.0f));
|
||||
lightTable.AddLight(light.ToLightData(32.0f), propAnimLight.Dynamic);
|
||||
}
|
||||
|
||||
if (propLight != null)
|
||||
if (propLight != null && propLight.Brightness != 0)
|
||||
{
|
||||
var light = new Light
|
||||
{
|
||||
|
@ -486,7 +487,7 @@ public class LightMapper
|
|||
for (var j = 0; j < _lights.Count; j++)
|
||||
{
|
||||
var light = _lights[j];
|
||||
if (!MathUtils.Intersects(new MathUtils.Sphere(light.Position, light.Radius), cellAabb))
|
||||
if (light.Dynamic || !MathUtils.Intersects(new MathUtils.Sphere(light.Position, light.Radius), cellAabb))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue