mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
[ts][player] Fix error message in case WebGL context could not be created.
This commit is contained in:
parent
ac7f0654a6
commit
ddace9b1c7
@ -336,7 +336,7 @@ export class SpinePlayer implements Disposable {
|
|||||||
this.sceneRenderer = new SceneRenderer(this.canvas, this.context, true);
|
this.sceneRenderer = new SceneRenderer(this.canvas, this.context, true);
|
||||||
if (config.showLoading) this.loadingScreen = new LoadingScreen(this.sceneRenderer);
|
if (config.showLoading) this.loadingScreen = new LoadingScreen(this.sceneRenderer);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.showError("Sorry, your browser does not support \nPlease use the latest version of Firefox, Chrome, Edge, or Safari.", e as any);
|
this.showError("Sorry, your browser does not support WebGL.\nPlease use the latest version of Firefox, Chrome, Edge, or Safari.", e as any);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user