- Create class "player"
This commit is contained in:
Kum1ta
2024-08-18 01:48:50 +02:00
parent a265843b82
commit 44ad413120
1218 changed files with 638609 additions and 0 deletions

21
site/real_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;
}
}