We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21df5d4 commit b6b10b0Copy full SHA for b6b10b0
1 file changed
src/three/plugins/images/ImageOverlayPlugin.js
@@ -910,6 +910,14 @@ export class ImageOverlayPlugin {
910
const { tileInfo, controller } = overlayInfo.get( overlay );
911
processedTiles.forEach( tile => {
912
913
+ if ( ! tileInfo.has( tile ) ) {
914
+
915
+ // check for the case where tiles have been added but not properly initialized with the
916
+ // given overlay, yet
917
+ return;
918
919
+ }
920
921
const {
922
meshInfo,
923
range,
0 commit comments