Skip to content

Commit 13776e5

Browse files
committed
Fixed argument order.
1 parent 51f94cd commit 13776e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gameobjects/tilesprite/TileSpriteWebGLRenderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ var TileSpriteWebGLRenderer = function (renderer, src, interpolationPercentage,
4949
getTint(src._tintTR, camera.alpha * src._alphaTR),
5050
getTint(src._tintBL, camera.alpha * src._alphaBL),
5151
getTint(src._tintBR, camera.alpha * src._alphaBR),
52+
(src._isTinted && src.tintFill),
5253
(src.tilePositionX % src.frame.width) / src.frame.width,
5354
(src.tilePositionY % src.frame.height) / src.frame.height,
54-
(src._isTinted && src.tintFill),
5555
camera,
5656
parentMatrix
5757
);

0 commit comments

Comments
 (0)