Bugfix: Mesh.deepClone() sets wrong elementCount and vertCount ... in trunk

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@11080 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
sgold 2014-03-13 23:40:24 +00:00
parent babb2cdce8
commit b30ca28704

View File

@ -240,8 +240,8 @@ public class Mesh implements Savable, Cloneable {
} }
clone.vertexArrayID = -1; clone.vertexArrayID = -1;
clone.vertCount = -1; clone.vertCount = vertCount;
clone.elementCount = -1; clone.elementCount = elementCount;
// although this could change // although this could change
// if the bone weight/index buffers are modified // if the bone weight/index buffers are modified