Browse Source

loadTileSet -> loadRootTileSet

Garrett Johnson 4 years ago
parent
commit
83e24bffd3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/base/TilesRendererBase.js

+ 2 - 2
src/base/TilesRendererBase.js

@@ -93,7 +93,7 @@ export class TilesRendererBase {
 		const rootTileSet = tileSets[ this.rootURL ];
 		if ( ! ( this.rootURL in tileSets ) ) {
 
-			this.loadTileSet( this.rootURL );
+			this.loadRootTileSet( this.rootURL );
 			return;
 
 		} else if ( ! rootTileSet || ! rootTileSet.root ) {
@@ -279,7 +279,7 @@ export class TilesRendererBase {
 
 	}
 
-	loadTileSet( url ) {
+	loadRootTileSet( url ) {
 
 		const tileSets = this.tileSets;
 		if ( ! ( url in tileSets ) ) {