mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 07:04:31 +00:00
The Mesh
WebGLRenderer will now recalculate the vertexOffset
correctly if the batch flushes, fixing an issue where it would display missing triangles in a mesh after a batch flush. Fix #6814
This commit is contained in:
parent
0c8f613087
commit
fcd0f7180c
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ var MeshWebGLRenderer = function (renderer, src, camera, parentMatrix)
|
|||
|
||||
textureUnit = pipeline.setGameObject(src);
|
||||
|
||||
vertexOffset = 0;
|
||||
vertexOffset = (pipeline.vertexCount * pipeline.currentShader.vertexComponentCount) - 1;
|
||||
}
|
||||
|
||||
vertexOffset = face.load(F32, U32, vertexOffset, textureUnit, tintEffect);
|
||||
|
|
Loading…
Reference in a new issue