gpt4 book ai didi

javascript - Uncaught ReferenceError : WEBGL is not defined

转载 作者:行者123 更新时间:2023-12-01 00:24:48 24 4
gpt4 key购买 nike

在我的 HTML 中,以下代码部分

if (WEBGL.isWebGLAvailable()==false) {
document.body.appendChild(WEBGL.getWebGLErrorMessage());
}

在控制台上生成以下错误:

Uncaught ReferenceError: WEBGL is not defined

我已经导入了所有必要的js,所以问题是:你如何解决这个问题?

最佳答案

似乎您正在使用 Three.js 库。

正如文档提到的:

Add https://github.com/mrdoob/three.js/blob/master/examples/jsm/WebGL.js to your javascript and run the following before attempting to render anything.

if ( WEBGL.isWebGLAvailable() ) {

// Initiate function or other initializations here
animate();

} else {

var warning = WEBGL.getWebGLErrorMessage();
document.getElementById( 'container' ).appendChild( warning );

}

所以我认为您实际上没有加载所需的脚本。

来源:https://threejs.org/docs/#manual/en/introduction/WebGL-compatibility-check

关于javascript - Uncaught ReferenceError : WEBGL is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59111286/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com