From 47ccbfaa12d790f969c637312c9e8e0f5758a242 Mon Sep 17 00:00:00 2001 From: sashavol Date: Fri, 27 Jul 2018 15:27:14 -0700 Subject: [PATCH] Fix outline indices not being updated for GeographicMesh when positions change. --- src/shapes/GeographicMesh.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shapes/GeographicMesh.js b/src/shapes/GeographicMesh.js index cc082b7a0..2b66bca4d 100644 --- a/src/shapes/GeographicMesh.js +++ b/src/shapes/GeographicMesh.js @@ -188,7 +188,7 @@ define([ this.reset(); this.meshIndices = null; - this.outlineIndices = null; + this.meshOutlineIndices = null; } },