Skip to content

Commit

Permalink
Increase sprite atlas size to 1024 x 1024 (#2802)
Browse files Browse the repository at this point in the history
fixes #2761
  • Loading branch information
lucaswoj authored Jun 29, 2016
1 parent edcb8dd commit d6d8ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/style/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = Style;
function Style(stylesheet, animationLoop, workerCount) {
this.animationLoop = animationLoop || new AnimationLoop();
this.dispatcher = new Dispatcher(workerCount || 1, this);
this.spriteAtlas = new SpriteAtlas(512, 512);
this.spriteAtlas = new SpriteAtlas(1024, 1024);
this.lineAtlas = new LineAtlas(256, 512);

this._layers = {};
Expand Down

0 comments on commit d6d8ac4

Please sign in to comment.