Bugfix: issue #613 (ClassCastException during read) in gradle-restructure branch

git-svn-id: https://jmonkeyengine.googlecode.com/svn/branches/gradle-restructure@11077 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
sgold 2014-03-13 08:44:34 +00:00
parent cdd6d33f68
commit 528ed8d014

View File

@ -610,7 +610,7 @@ public abstract class AbstractShadowRenderer implements SceneProcessor, Savable
InputCapsule ic = (InputCapsule) im.getCapsule(this);
assetManager = im.getAssetManager();
nbShadowMaps = ic.readInt("nbShadowMaps", 1);
shadowMapSize = ic.readInt("shadowMapSize", 0);
shadowMapSize = ic.readFloat("shadowMapSize", 0f);
shadowIntensity = ic.readFloat("shadowIntensity", 0.7f);
edgeFilteringMode = ic.readEnum("edgeFilteringMode", EdgeFilteringMode.class, EdgeFilteringMode.Bilinear);
shadowCompareMode = ic.readEnum("shadowCompareMode", CompareMode.class, CompareMode.Hardware);