mirror of
https://github.com/MapMakersAndProgrammers/Alternativa3D.git
synced 2025-10-26 18:09:14 -07:00
fix bug excludeLight
This commit is contained in:
@@ -341,7 +341,7 @@ public class Camera3D extends Object3D {
|
|||||||
light = lights[i];
|
light = lights[i];
|
||||||
// Checking light source for existing in excludedLights
|
// Checking light source for existing in excludedLights
|
||||||
j = 0;
|
j = 0;
|
||||||
while (j<excludedLightLength && excludedLights[j]!=light) j++;
|
while (j<excludedLightLength && root.excludedLights[j]!=light) j++;
|
||||||
if (j<excludedLightLength) continue;
|
if (j<excludedLightLength) continue;
|
||||||
|
|
||||||
light.lightToObjectTransform.combine(root.cameraToLocalTransform, light.localToCameraTransform);
|
light.lightToObjectTransform.combine(root.cameraToLocalTransform, light.localToCameraTransform);
|
||||||
@@ -357,7 +357,7 @@ public class Camera3D extends Object3D {
|
|||||||
light = lights[i];
|
light = lights[i];
|
||||||
// Checking light source for existing in excludedLights
|
// Checking light source for existing in excludedLights
|
||||||
j = 0;
|
j = 0;
|
||||||
while (j<excludedLightLength && excludedLights[j]!=light) j++;
|
while (j<excludedLightLength && root.excludedLights[j]!=light) j++;
|
||||||
if (j<excludedLightLength) continue;
|
if (j<excludedLightLength) continue;
|
||||||
|
|
||||||
light.lightToObjectTransform.combine(root.cameraToLocalTransform, light.localToCameraTransform);
|
light.lightToObjectTransform.combine(root.cameraToLocalTransform, light.localToCameraTransform);
|
||||||
|
|||||||
Reference in New Issue
Block a user