created site just for chat

This commit is contained in:
edbernar
2024-07-30 20:19:29 +02:00
parent 57c261c689
commit 54fb27fe16
1288 changed files with 421 additions and 4240 deletions

21
site/game/node_modules/three/src/Three.Legacy.js generated vendored Normal file
View File

@ -0,0 +1,21 @@
import { WebGLRenderTarget } from './renderers/WebGLRenderTarget.js';
export class WebGLMultipleRenderTargets extends WebGLRenderTarget { // @deprecated, r162
constructor( width = 1, height = 1, count = 1, options = {} ) {
console.warn( 'THREE.WebGLMultipleRenderTargets has been deprecated and will be removed in r172. Use THREE.WebGLRenderTarget and set the "count" parameter to enable MRT.' );
super( width, height, { ...options, count } );
this.isWebGLMultipleRenderTargets = true;
}
get texture() {
return this.textures;
}
}