You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Fix typo in engine.js
This commit is contained in:
@@ -267,9 +267,9 @@
|
|||||||
try {
|
try {
|
||||||
var testCanvas = document.createElement('canvas');
|
var testCanvas = document.createElement('canvas');
|
||||||
if (majorVersion === 1) {
|
if (majorVersion === 1) {
|
||||||
testContext = testCanvas.getContext('webgl') || testCanvas.getContet('experimental-webgl');
|
testContext = testCanvas.getContext('webgl') || testCanvas.getContext('experimental-webgl');
|
||||||
} else if (majorVersion === 2) {
|
} else if (majorVersion === 2) {
|
||||||
testContext = testCanvas.getContext('webgl2') || testCanvas.getContet('experimental-webgl2');
|
testContext = testCanvas.getContext('webgl2') || testCanvas.getContext('experimental-webgl2');
|
||||||
}
|
}
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
return !!testContext;
|
return !!testContext;
|
||||||
|
|||||||
Reference in New Issue
Block a user