Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A little fix: links referenced in sceneLoader.ts are not found #13102

Merged
merged 1 commit into from
Oct 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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