Skip to content

Commit 9f15b5a

Browse files
committed
Removed scale abs, as deeper effects unknown
1 parent cb49d89 commit 9f15b5a

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/gameobjects/components/TransformMatrix.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -851,10 +851,6 @@ var TransformMatrix = new Class({
851851
matrix[4] = x;
852852
matrix[5] = y;
853853

854-
// Double-check against input, scaling, etc
855-
scaleX = Math.abs(scaleX);
856-
scaleY = Math.abs(scaleY);
857-
858854
// Rotate and Scale
859855
matrix[0] = radianCos * scaleX;
860856
matrix[1] = radianSin * scaleX;

0 commit comments

Comments
 (0)