Merge pull request #414 from BorealFeast/PBRisComing
Fixed indirect light extraction in Material
This commit is contained in:
commit
bc73765d7c
@ -713,12 +713,14 @@ public class Material implements CloneableSmartAsset, Cloneable, Savable {
|
|||||||
ambientLightColor.addLocal(l.getColor());
|
ambientLightColor.addLocal(l.getColor());
|
||||||
if(removeLights){
|
if(removeLights){
|
||||||
lightList.remove(l);
|
lightList.remove(l);
|
||||||
|
j--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (l instanceof LightProbe) {
|
if (l instanceof LightProbe) {
|
||||||
probe = (LightProbe)l;
|
probe = (LightProbe)l;
|
||||||
if(removeLights){
|
if(removeLights){
|
||||||
lightList.remove(l);
|
lightList.remove(l);
|
||||||
|
j--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user