Browse Source

Fixes 1462: renderer clipping

tags/v0.6.1
GoogzGazuli 4 years ago
parent
commit
9a19d3b068
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/client/js/rendering/renderer.js

+ 1
- 1
src/client/js/rendering/renderer.js View File

@@ -335,7 +335,7 @@ define([
spritePool.clean();

this.stage.filters = [new PIXI.filters.AlphaFilter()];
this.stage.filterArea = new PIXI.Rectangle(0, 0, w * scale, h * scale);
this.stage.filterArea = new PIXI.Rectangle(0, 0, Math.max(w * scale, this.width), Math.max(h * scale, this.height));

this.hiddenRooms = msg.hiddenRooms;



Loading…
Cancel
Save