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

32
web-app/node_modules/three/src/extras/Controls.js generated vendored Normal file
View File

@@ -0,0 +1,32 @@
import { EventDispatcher } from '../core/EventDispatcher.js';
class Controls extends EventDispatcher {
constructor( object, domElement = null ) {
super();
this.object = object;
this.domElement = domElement;
this.enabled = true;
this.state = - 1;
this.keys = {};
this.mouseButtons = { LEFT: null, MIDDLE: null, RIGHT: null };
this.touches = { ONE: null, TWO: null };
}
connect() {}
disconnect() {}
dispose() {}
update( /* delta */ ) {}
}
export { Controls };