Skip to content

Commit

Permalink
add virtual update to DynamicTileManager
Browse files Browse the repository at this point in the history
  • Loading branch information
brnkhy committed Oct 4, 2016
1 parent 03b89d0 commit 3a00b78
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Assets/MapzenGo/Models/DynamicTileManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ public override void Start()
_centerCollider = new Rect(Vector2.zero - rect / 2 , rect);
}

void Update()
public override void Update()
{
base.Update();
UpdateTiles();
}

Expand Down

0 comments on commit 3a00b78

Please sign in to comment.