mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
Fix dynamic layer scale bug
This commit is contained in:
parent
c31147df19
commit
aaa0d41f5d
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ var DynamicTilemapLayerWebGLRenderer = function (renderer, gameObject, interpola
|
|||
|
||||
batch.addTileTextureRect(
|
||||
texture,
|
||||
(x + tile.worldX) * sx, (y + tile.worldY) * sy,
|
||||
x + tile.worldX * sx, y + tile.worldY * sy,
|
||||
tile.width * sx, tile.height * sy,
|
||||
alpha * tile.alpha, tile.tint,
|
||||
scrollFactorX, scrollFactorY,
|
||||
|
|
Loading…
Reference in a new issue