|
@@ -475,10 +475,11 @@ public class BatchNode extends Node implements Savable {
|
|
|
useTangents = true;
|
|
|
}
|
|
|
} else {
|
|
|
- for (int vert = 0; vert < geomVertCount; vert++) {
|
|
|
- int curGlobalVertIndex = globalVertIndex + vert;
|
|
|
- inBuf.copyElement(vert, outBuf, curGlobalVertIndex);
|
|
|
- }
|
|
|
+ inBuf.copyElements(0, outBuf, globalVertIndex, geomVertCount);
|
|
|
+// for (int vert = 0; vert < geomVertCount; vert++) {
|
|
|
+// int curGlobalVertIndex = globalVertIndex + vert;
|
|
|
+// inBuf.copyElement(vert, outBuf, curGlobalVertIndex);
|
|
|
+// }
|
|
|
}
|
|
|
}
|
|
|
|