fixed NPE.
This commit is contained in:
parent
c2219ecce5
commit
87562bfbae
@ -229,7 +229,12 @@ public class PointLightShadowRenderer extends AbstractShadowRenderer {
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
protected boolean checkCulling(Camera viewCam) {
|
||||
protected boolean checkCulling(Camera viewCam) {
|
||||
|
||||
if (light == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Camera cam = viewCam;
|
||||
if(frustumCam != null){
|
||||
cam = frustumCam;
|
||||
|
Loading…
x
Reference in New Issue
Block a user