* Make sure to reset planeState and viewportChanged values in when cloning cameras

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10771 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
sha..RD 2013-09-13 00:48:47 +00:00
parent 228a8e2ebd
commit 67ce41ee57

View File

@ -320,8 +320,8 @@ public class Camera implements Savable, Cloneable {
this.width = cam.width;
this.height = cam.height;
this.planeState = cam.planeState;
this.viewportChanged = cam.viewportChanged;
this.planeState = 0;
this.viewportChanged = true;
for (int i = 0; i < MAX_WORLD_PLANES; ++i) {
worldPlane[i].setNormal(cam.worldPlane[i].getNormal());
worldPlane[i].setConstant(cam.worldPlane[i].getConstant());