first commit

This commit is contained in:
rafaeldpsilva
2025-12-10 12:32:12 +00:00
commit adbbf6bf50
3442 changed files with 2725681 additions and 0 deletions

25
web-app/node_modules/three/src/audio/AudioContext.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
let _context;
class AudioContext {
static getContext() {
if ( _context === undefined ) {
_context = new ( window.AudioContext || window.webkitAudioContext )();
}
return _context;
}
static setContext( value ) {
_context = value;
}
}
export { AudioContext };