We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c2dae0 commit 3faca89Copy full SHA for 3faca89
1 file changed
src/pixi/extras/Tilemap.js
@@ -353,7 +353,7 @@ PIXI.Tilemap.prototype._renderWholeTilemap = function (renderSession) {
353
// set the clipping limits
354
gl.uniform2f(shader.uClipOffset, this.offset.x / this.game.width * 2, this.offset.y / this.game.height * 2);
355
gl.uniform2f(shader.uClipLoc, this.offset.x, this.offset.y);
356
- gl.uniform2f(shader.uClipping, this.displayWidth, this.game.height - this.displayHeight);
+ gl.uniform2f(shader.uClipLimit, this.displayWidth, this.game.height - this.displayHeight);
357
358
// set the offset in screen units to the center of the screen
359
// and flip the GL y coordinate to be zero at the top
0 commit comments