Null checked additionalRenderState when loading a material

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8532 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
rem..om 2011-10-26 15:10:53 +00:00
parent cc7701aa0d
commit 2a0c4ed10f

View File

@ -1120,7 +1120,7 @@ public class Material implements Asset, Cloneable, Savable, Comparable<Material>
}
}
}
if (guessRenderStateApply){
if (guessRenderStateApply && additionalState != null){
// Try to guess values of "apply" render state based on defaults
// if value != default then set apply to true
additionalState.applyPolyOffset = additionalState.offsetEnabled;