Skip to content

Commit 643d5b4

Browse files
committed
Check for auto update before tiling when transform changes
1 parent 7b302e6 commit 643d5b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Runtime/AutoTile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ private void OnValidate()
128128

129129
private void LateUpdate()
130130
{
131-
if (this.transform.hasChanged)
131+
if (this.autoUpdate && this.transform.hasChanged)
132132
{
133133
Tile();
134134
this.transform.hasChanged = false;

0 commit comments

Comments
 (0)