Skip to content

Commit ff72fc5

Browse files
committed
Fix type on exp transform 2
1 parent ae46402 commit ff72fc5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v3/src/components/experimental-Transform-2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Transform.prototype.update = function (parentTransformMatrix)
146146
{
147147
var parent = parentTransformMatrix.matrix;
148148
var world = this.worldMatrix.matrix;
149-
var localm this.localMatrix.loadIdentity();
149+
var localm = this.localMatrix.loadIdentity();
150150
localm.translate(this.positionX, this.positionY);
151151
localm.rotate(this.rotation);
152152
var local = localm.scale(this.scaleX, this.scaleY).matrix;

0 commit comments

Comments
 (0)