Skip to content

Commit

Permalink
Merge pull request #13102 from drumath2237/fix-sceneloader-error-msg-…
Browse files Browse the repository at this point in the history
…link

A little fix: links referenced in sceneLoader.ts are not found
  • Loading branch information
sebavan authored Oct 12, 2022
2 parents 30080e6 + 5f1185c commit ab26866
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dev/core/src/Loading/sceneLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ interface IFileInfo {

/**
* Class used to load scene from various file formats using registered plugins
* @see https://doc.babylonjs.com/how_to/load_from_any_file_type
* @see https://doc.babylonjs.com/features/featuresDeepDive/importers/loadingFileTypes
*/
export class SceneLoader {
/**
Expand Down Expand Up @@ -440,7 +440,7 @@ export class SceneLoader {
Logger.Warn(
"Unable to find a plugin to load " +
extension +
" files. Trying to use .babylon default plugin. To load from a specific filetype (eg. gltf) see: https://doc.babylonjs.com/how_to/load_from_any_file_type"
" files. Trying to use .babylon default plugin. To load from a specific filetype (eg. gltf) see: https://doc.babylonjs.com/features/featuresDeepDive/importers/loadingFileTypes"
);
return SceneLoader.GetDefaultPlugin();
}
Expand Down

0 comments on commit ab26866

Please sign in to comment.