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:
parent
babb2cdce8
commit
b30ca28704
@ -240,8 +240,8 @@ public class Mesh implements Savable, Cloneable {
|
||||
}
|
||||
|
||||
clone.vertexArrayID = -1;
|
||||
clone.vertCount = -1;
|
||||
clone.elementCount = -1;
|
||||
clone.vertCount = vertCount;
|
||||
clone.elementCount = elementCount;
|
||||
|
||||
// although this could change
|
||||
// if the bone weight/index buffers are modified
|
||||
|
Loading…
x
Reference in New Issue
Block a user