| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- import { Audio } from './audio/Audio.js';
- import { AudioAnalyser } from './audio/AudioAnalyser.js';
- import { PerspectiveCamera } from './cameras/PerspectiveCamera.js';
- import { CullFaceFront, CullFaceBack } from './constants.js';
- import {
- Float64BufferAttribute,
- Float32BufferAttribute,
- Uint32BufferAttribute,
- Int32BufferAttribute,
- Uint16BufferAttribute,
- Int16BufferAttribute,
- Uint8ClampedBufferAttribute,
- Uint8BufferAttribute,
- Int8BufferAttribute,
- BufferAttribute
- } from './core/BufferAttribute.js';
- import { BufferGeometry } from './core/BufferGeometry.js';
- import { Face3 } from './core/Face3.js';
- import { Geometry } from './core/Geometry';
- import { Object3D } from './core/Object3D.js';
- import { Uniform } from './core/Uniform';
- import { Curve } from './extras/core/Curve.js';
- import { CatmullRomCurve3 } from './extras/curves/CatmullRomCurve3.js';
- import { BoxHelper } from './helpers/BoxHelper';
- import { GridHelper } from './helpers/GridHelper.js';
- import { BoxGeometry } from './geometries/BoxGeometry.js';
- import { EdgesGeometry } from './geometries/EdgesGeometry.js';
- import { ExtrudeGeometry } from './geometries/ExtrudeGeometry.js';
- import { ShapeGeometry } from './geometries/ShapeGeometry.js';
- import { WireframeGeometry } from './geometries/WireframeGeometry.js';
- import { Light } from './lights/Light.js';
- import { FileLoader } from './loaders/FileLoader.js';
- import { AudioLoader } from './loaders/AudioLoader.js';
- import { CubeTextureLoader } from './loaders/CubeTextureLoader.js';
- import { DataTextureLoader } from './loaders/DataTextureLoader.js';
- import { TextureLoader } from './loaders/TextureLoader.js';
- import { Material } from './materials/Material.js';
- import { LineBasicMaterial } from './materials/LineBasicMaterial.js';
- import { MeshPhongMaterial } from './materials/MeshPhongMaterial.js';
- import { MultiMaterial } from './materials/MultiMaterial.js';
- import { PointsMaterial } from './materials/PointsMaterial.js';
- import { ShaderMaterial } from './materials/ShaderMaterial.js';
- import { Box2 } from './math/Box2.js';
- import { Box3 } from './math/Box3.js';
- import { Color } from './math/Color.js';
- import { Line3 } from './math/Line3.js';
- import { _Math } from './math/Math.js';
- import { Matrix3 } from './math/Matrix3.js';
- import { Matrix4 } from './math/Matrix4.js';
- import { Plane } from './math/Plane.js';
- import { Quaternion } from './math/Quaternion.js';
- import { Ray } from './math/Ray.js';
- import { Vector2 } from './math/Vector2.js';
- import { Vector3 } from './math/Vector3.js';
- import { Vector4 } from './math/Vector4.js';
- import { LineSegments } from './objects/LineSegments.js';
- import { LOD } from './objects/LOD.js';
- import { Points } from './objects/Points.js';
- import { Sprite } from './objects/Sprite.js';
- import { WebGLRenderer } from './renderers/WebGLRenderer.js';
- import { WebGLRenderTarget } from './renderers/WebGLRenderTarget.js';
- import { WebGLShadowMap } from './renderers/webgl/WebGLShadowMap.js';
- import { Shape } from './extras/core/Shape.js';
- export { BoxGeometry as CubeGeometry };
- export function Face4( a, b, c, d, normal, color, materialIndex ) {
- console.warn( 'THREE.Face4 has been removed. A THREE.Face3 will be created instead.' );
- return new Face3( a, b, c, normal, color, materialIndex );
- }
- export var LineStrip = 0;
- export var LinePieces = 1;
- export function MeshFaceMaterial( materials ) {
- console.warn( 'THREE.MeshFaceMaterial has been renamed to THREE.MultiMaterial.' );
- return new MultiMaterial( materials );
- }
- export function PointCloud( geometry, material ) {
- console.warn( 'THREE.PointCloud has been renamed to THREE.Points.' );
- return new Points( geometry, material );
- }
- export function Particle( material ) {
- console.warn( 'THREE.Particle has been renamed to THREE.Sprite.' );
- return new Sprite( material );
- }
- export function ParticleSystem( geometry, material ) {
- console.warn( 'THREE.ParticleSystem has been renamed to THREE.Points.' );
- return new Points( geometry, material );
- }
- export function PointCloudMaterial( parameters ) {
- console.warn( 'THREE.PointCloudMaterial has been renamed to THREE.PointsMaterial.' );
- return new PointsMaterial( parameters );
- }
- export function ParticleBasicMaterial( parameters ) {
- console.warn( 'THREE.ParticleBasicMaterial has been renamed to THREE.PointsMaterial.' );
- return new PointsMaterial( parameters );
- }
- export function ParticleSystemMaterial( parameters ) {
- console.warn( 'THREE.ParticleSystemMaterial has been renamed to THREE.PointsMaterial.' );
- return new PointsMaterial( parameters );
- }
- export function Vertex( x, y, z ) {
- console.warn( 'THREE.Vertex has been removed. Use THREE.Vector3 instead.' );
- return new Vector3( x, y, z );
- }
- //
- export function DynamicBufferAttribute( array, itemSize ) {
- console.warn( 'THREE.DynamicBufferAttribute has been removed. Use new THREE.BufferAttribute().setDynamic( true ) instead.' );
- return new BufferAttribute( array, itemSize ).setDynamic( true );
- }
- export function Int8Attribute( array, itemSize ) {
- console.warn( 'THREE.Int8Attribute has been removed. Use new THREE.Int8BufferAttribute() instead.' );
- return new Int8BufferAttribute( array, itemSize );
- }
- export function Uint8Attribute( array, itemSize ) {
- console.warn( 'THREE.Uint8Attribute has been removed. Use new THREE.Uint8BufferAttribute() instead.' );
- return new Uint8BufferAttribute( array, itemSize );
- }
- export function Uint8ClampedAttribute( array, itemSize ) {
- console.warn( 'THREE.Uint8ClampedAttribute has been removed. Use new THREE.Uint8ClampedBufferAttribute() instead.' );
- return new Uint8ClampedBufferAttribute( array, itemSize );
- }
- export function Int16Attribute( array, itemSize ) {
- console.warn( 'THREE.Int16Attribute has been removed. Use new THREE.Int16BufferAttribute() instead.' );
- return new Int16BufferAttribute( array, itemSize );
- }
- export function Uint16Attribute( array, itemSize ) {
- console.warn( 'THREE.Uint16Attribute has been removed. Use new THREE.Uint16BufferAttribute() instead.' );
- return new Uint16BufferAttribute( array, itemSize );
- }
- export function Int32Attribute( array, itemSize ) {
- console.warn( 'THREE.Int32Attribute has been removed. Use new THREE.Int32BufferAttribute() instead.' );
- return new Int32BufferAttribute( array, itemSize );
- }
- export function Uint32Attribute( array, itemSize ) {
- console.warn( 'THREE.Uint32Attribute has been removed. Use new THREE.Uint32BufferAttribute() instead.' );
- return new Uint32BufferAttribute( array, itemSize );
- }
- export function Float32Attribute( array, itemSize ) {
- console.warn( 'THREE.Float32Attribute has been removed. Use new THREE.Float32BufferAttribute() instead.' );
- return new Float32BufferAttribute( array, itemSize );
- }
- export function Float64Attribute( array, itemSize ) {
- console.warn( 'THREE.Float64Attribute has been removed. Use new THREE.Float64BufferAttribute() instead.' );
- return new Float64BufferAttribute( array, itemSize );
- }
- //
- Curve.create = function ( construct, getPoint ) {
- console.log( 'THREE.Curve.create() has been deprecated' );
- construct.prototype = Object.create( Curve.prototype );
- construct.prototype.constructor = construct;
- construct.prototype.getPoint = getPoint;
- return construct;
- };
- //
- export function ClosedSplineCurve3( points ) {
- console.warn( 'THREE.ClosedSplineCurve3 has been deprecated. Use THREE.CatmullRomCurve3 instead.' );
- CatmullRomCurve3.call( this, points );
- this.type = 'catmullrom';
- this.closed = true;
- }
- ClosedSplineCurve3.prototype = Object.create( CatmullRomCurve3.prototype );
- //
- export function SplineCurve3( points ) {
- console.warn( 'THREE.SplineCurve3 has been deprecated. Use THREE.CatmullRomCurve3 instead.' );
- CatmullRomCurve3.call( this, points );
- this.type = 'catmullrom';
- }
- SplineCurve3.prototype = Object.create( CatmullRomCurve3.prototype );
- //
- export function Spline( points ) {
- console.warn( 'THREE.Spline has been removed. Use THREE.CatmullRomCurve3 instead.' );
- CatmullRomCurve3.call( this, points );
- this.type = 'catmullrom';
- }
- Spline.prototype = Object.create( CatmullRomCurve3.prototype );
- Object.assign( Spline.prototype, {
- initFromArray: function ( a ) {
- console.error( 'THREE.Spline: .initFromArray() has been removed.' );
- },
- getControlPointsArray: function ( optionalTarget ) {
- console.error( 'THREE.Spline: .getControlPointsArray() has been removed.' );
- },
- reparametrizeByArcLength: function ( samplingCoef ) {
- console.error( 'THREE.Spline: .reparametrizeByArcLength() has been removed.' );
- }
- } );
- //
- export function BoundingBoxHelper( object, color ) {
- console.warn( 'THREE.BoundingBoxHelper has been deprecated. Creating a THREE.BoxHelper instead.' );
- return new BoxHelper( object, color );
- }
- export function EdgesHelper( object, hex ) {
- console.warn( 'THREE.EdgesHelper has been removed. Use THREE.EdgesGeometry instead.' );
- return new LineSegments( new EdgesGeometry( object.geometry ), new LineBasicMaterial( { color: hex !== undefined ? hex : 0xffffff } ) );
- }
- GridHelper.prototype.setColors = function () {
- console.error( 'THREE.GridHelper: setColors() has been deprecated, pass them in the constructor instead.' );
- };
- export function WireframeHelper( object, hex ) {
- console.warn( 'THREE.WireframeHelper has been removed. Use THREE.WireframeGeometry instead.' );
- return new LineSegments( new WireframeGeometry( object.geometry ), new LineBasicMaterial( { color: hex !== undefined ? hex : 0xffffff } ) );
- }
- //
- export function XHRLoader( manager ) {
- console.warn( 'THREE.XHRLoader has been renamed to THREE.FileLoader.' );
- return new FileLoader( manager );
- }
- export function BinaryTextureLoader( manager ) {
- console.warn( 'THREE.BinaryTextureLoader has been renamed to THREE.DataTextureLoader.' );
- return new DataTextureLoader( manager );
- }
- //
- Object.assign( Box2.prototype, {
- center: function ( optionalTarget ) {
- console.warn( 'THREE.Box2: .center() has been renamed to .getCenter().' );
- return this.getCenter( optionalTarget );
- },
- empty: function () {
- console.warn( 'THREE.Box2: .empty() has been renamed to .isEmpty().' );
- return this.isEmpty();
- },
- isIntersectionBox: function ( box ) {
- console.warn( 'THREE.Box2: .isIntersectionBox() has been renamed to .intersectsBox().' );
- return this.intersectsBox( box );
- },
- size: function ( optionalTarget ) {
- console.warn( 'THREE.Box2: .size() has been renamed to .getSize().' );
- return this.getSize( optionalTarget );
- }
- } );
- Object.assign( Box3.prototype, {
- center: function ( optionalTarget ) {
- console.warn( 'THREE.Box3: .center() has been renamed to .getCenter().' );
- return this.getCenter( optionalTarget );
- },
- empty: function () {
- console.warn( 'THREE.Box3: .empty() has been renamed to .isEmpty().' );
- return this.isEmpty();
- },
- isIntersectionBox: function ( box ) {
- console.warn( 'THREE.Box3: .isIntersectionBox() has been renamed to .intersectsBox().' );
- return this.intersectsBox( box );
- },
- isIntersectionSphere: function ( sphere ) {
- console.warn( 'THREE.Box3: .isIntersectionSphere() has been renamed to .intersectsSphere().' );
- return this.intersectsSphere( sphere );
- },
- size: function ( optionalTarget ) {
- console.warn( 'THREE.Box3: .size() has been renamed to .getSize().' );
- return this.getSize( optionalTarget );
- }
- } );
- Line3.prototype.center = function ( optionalTarget ) {
- console.warn( 'THREE.Line3: .center() has been renamed to .getCenter().' );
- return this.getCenter( optionalTarget );
- };
- _Math.random16 = function () {
- console.warn( 'THREE.Math.random16() has been deprecated. Use Math.random() instead.' );
- return Math.random();
- };
- Object.assign( Matrix3.prototype, {
- flattenToArrayOffset: function ( array, offset ) {
- console.warn( "THREE.Matrix3: .flattenToArrayOffset() has been deprecated. Use .toArray() instead." );
- return this.toArray( array, offset );
- },
- multiplyVector3: function ( vector ) {
- console.warn( 'THREE.Matrix3: .multiplyVector3() has been removed. Use vector.applyMatrix3( matrix ) instead.' );
- return vector.applyMatrix3( this );
- },
- multiplyVector3Array: function ( a ) {
- console.warn( 'THREE.Matrix3: .multiplyVector3Array() has been renamed. Use matrix.applyToVector3Array( array ) instead.' );
- return this.applyToVector3Array( a );
- },
- applyToBuffer: function( buffer, offset, length ) {
- console.warn( 'THREE.Matrix3: .applyToBuffer() has been removed. Use matrix.applyToBufferAttribute( attribute ) instead.' );
- return this.applyToBufferAttribute( buffer );
- },
- applyToVector3Array: function( array, offset, length ) {
- console.error( 'THREE.Matrix3: .applyToVector3Array() has been removed.' );
- }
- } );
- Object.assign( Matrix4.prototype, {
- extractPosition: function ( m ) {
- console.warn( 'THREE.Matrix4: .extractPosition() has been renamed to .copyPosition().' );
- return this.copyPosition( m );
- },
- flattenToArrayOffset: function ( array, offset ) {
- console.warn( "THREE.Matrix4: .flattenToArrayOffset() has been deprecated. Use .toArray() instead." );
- return this.toArray( array, offset );
- },
- getPosition: function () {
- var v1;
- return function getPosition() {
- if ( v1 === undefined ) v1 = new Vector3();
- console.warn( 'THREE.Matrix4: .getPosition() has been removed. Use Vector3.setFromMatrixPosition( matrix ) instead.' );
- return v1.setFromMatrixColumn( this, 3 );
- };
- }(),
- setRotationFromQuaternion: function ( q ) {
- console.warn( 'THREE.Matrix4: .setRotationFromQuaternion() has been renamed to .makeRotationFromQuaternion().' );
- return this.makeRotationFromQuaternion( q );
- },
- multiplyVector3: function ( vector ) {
- console.warn( 'THREE.Matrix4: .multiplyVector3() has been removed. Use vector.applyMatrix4( matrix ) instead.' );
- return vector.applyMatrix4( this );
- },
- multiplyVector4: function ( vector ) {
- console.warn( 'THREE.Matrix4: .multiplyVector4() has been removed. Use vector.applyMatrix4( matrix ) instead.' );
- return vector.applyMatrix4( this );
- },
- multiplyVector3Array: function ( a ) {
- console.warn( 'THREE.Matrix4: .multiplyVector3Array() has been renamed. Use matrix.applyToVector3Array( array ) instead.' );
- return this.applyToVector3Array( a );
- },
- rotateAxis: function ( v ) {
- console.warn( 'THREE.Matrix4: .rotateAxis() has been removed. Use Vector3.transformDirection( matrix ) instead.' );
- v.transformDirection( this );
- },
- crossVector: function ( vector ) {
- console.warn( 'THREE.Matrix4: .crossVector() has been removed. Use vector.applyMatrix4( matrix ) instead.' );
- return vector.applyMatrix4( this );
- },
- translate: function () {
- console.error( 'THREE.Matrix4: .translate() has been removed.' );
- },
- rotateX: function () {
- console.error( 'THREE.Matrix4: .rotateX() has been removed.' );
- },
- rotateY: function () {
- console.error( 'THREE.Matrix4: .rotateY() has been removed.' );
- },
- rotateZ: function () {
- console.error( 'THREE.Matrix4: .rotateZ() has been removed.' );
- },
- rotateByAxis: function () {
- console.error( 'THREE.Matrix4: .rotateByAxis() has been removed.' );
- },
- applyToBuffer: function( buffer, offset, length ) {
- console.warn( 'THREE.Matrix4: .applyToBuffer() has been removed. Use matrix.applyToBufferAttribute( attribute ) instead.' );
- return this.applyToBufferAttribute( buffer );
- },
- applyToVector3Array: function( array, offset, length ) {
- console.error( 'THREE.Matrix4: .applyToVector3Array() has been removed.' );
- },
- makeFrustum: function( left, right, bottom, top, near, far ) {
- console.warn( 'THREE.Matrix4: .makeFrustum() has been removed. Use .makePerspective( left, right, top, bottom, near, far ) instead.' );
- return this.makePerspective( left, right, top, bottom, near, far );
- }
- } );
- Plane.prototype.isIntersectionLine = function ( line ) {
- console.warn( 'THREE.Plane: .isIntersectionLine() has been renamed to .intersectsLine().' );
- return this.intersectsLine( line );
- };
- Quaternion.prototype.multiplyVector3 = function ( vector ) {
- console.warn( 'THREE.Quaternion: .multiplyVector3() has been removed. Use is now vector.applyQuaternion( quaternion ) instead.' );
- return vector.applyQuaternion( this );
- };
- Object.assign( Ray.prototype, {
- isIntersectionBox: function ( box ) {
- console.warn( 'THREE.Ray: .isIntersectionBox() has been renamed to .intersectsBox().' );
- return this.intersectsBox( box );
- },
- isIntersectionPlane: function ( plane ) {
- console.warn( 'THREE.Ray: .isIntersectionPlane() has been renamed to .intersectsPlane().' );
- return this.intersectsPlane( plane );
- },
- isIntersectionSphere: function ( sphere ) {
- console.warn( 'THREE.Ray: .isIntersectionSphere() has been renamed to .intersectsSphere().' );
- return this.intersectsSphere( sphere );
- }
- } );
- Object.assign( Shape.prototype, {
- extrude: function ( options ) {
- console.warn( 'THREE.Shape: .extrude() has been removed. Use ExtrudeGeometry() instead.' );
- return new ExtrudeGeometry( this, options );
- },
- makeGeometry: function ( options ) {
- console.warn( 'THREE.Shape: .makeGeometry() has been removed. Use ShapeGeometry() instead.' );
- return new ShapeGeometry( this, options );
- }
- } );
- Object.assign( Vector2.prototype, {
- fromAttribute: function ( attribute, index, offset ) {
- console.error( 'THREE.Vector2: .fromAttribute() has been renamed to .fromBufferAttribute().' );
- return this.fromBufferAttribute( attribute, index, offset );
- }
- } );
- Object.assign( Vector3.prototype, {
- setEulerFromRotationMatrix: function () {
- console.error( 'THREE.Vector3: .setEulerFromRotationMatrix() has been removed. Use Euler.setFromRotationMatrix() instead.' );
- },
- setEulerFromQuaternion: function () {
- console.error( 'THREE.Vector3: .setEulerFromQuaternion() has been removed. Use Euler.setFromQuaternion() instead.' );
- },
- getPositionFromMatrix: function ( m ) {
- console.warn( 'THREE.Vector3: .getPositionFromMatrix() has been renamed to .setFromMatrixPosition().' );
- return this.setFromMatrixPosition( m );
- },
- getScaleFromMatrix: function ( m ) {
- console.warn( 'THREE.Vector3: .getScaleFromMatrix() has been renamed to .setFromMatrixScale().' );
- return this.setFromMatrixScale( m );
- },
- getColumnFromMatrix: function ( index, matrix ) {
- console.warn( 'THREE.Vector3: .getColumnFromMatrix() has been renamed to .setFromMatrixColumn().' );
- return this.setFromMatrixColumn( matrix, index );
- },
- applyProjection: function ( m ) {
- console.warn( 'THREE.Vector3: .applyProjection() has been removed. Use .applyMatrix4( m ) instead.' );
- return this.applyMatrix4( m );
- },
- fromAttribute: function ( attribute, index, offset ) {
- console.error( 'THREE.Vector3: .fromAttribute() has been renamed to .fromBufferAttribute().' );
- return this.fromBufferAttribute( attribute, index, offset );
- }
- } );
- Object.assign( Vector4.prototype, {
- fromAttribute: function ( attribute, index, offset ) {
- console.error( 'THREE.Vector4: .fromAttribute() has been renamed to .fromBufferAttribute().' );
- return this.fromBufferAttribute( attribute, index, offset );
- }
- } );
- //
- Geometry.prototype.computeTangents = function () {
- console.warn( 'THREE.Geometry: .computeTangents() has been removed.' );
- };
- Object.assign( Object3D.prototype, {
- getChildByName: function ( name ) {
- console.warn( 'THREE.Object3D: .getChildByName() has been renamed to .getObjectByName().' );
- return this.getObjectByName( name );
- },
- renderDepth: function () {
- console.warn( 'THREE.Object3D: .renderDepth has been removed. Use .renderOrder, instead.' );
- },
- translate: function ( distance, axis ) {
- console.warn( 'THREE.Object3D: .translate() has been removed. Use .translateOnAxis( axis, distance ) instead.' );
- return this.translateOnAxis( axis, distance );
- }
- } );
- Object.defineProperties( Object3D.prototype, {
- eulerOrder: {
- get: function () {
- console.warn( 'THREE.Object3D: .eulerOrder is now .rotation.order.' );
- return this.rotation.order;
- },
- set: function ( value ) {
- console.warn( 'THREE.Object3D: .eulerOrder is now .rotation.order.' );
- this.rotation.order = value;
- }
- },
- useQuaternion: {
- get: function () {
- console.warn( 'THREE.Object3D: .useQuaternion has been removed. The library now uses quaternions by default.' );
- },
- set: function () {
- console.warn( 'THREE.Object3D: .useQuaternion has been removed. The library now uses quaternions by default.' );
- }
- }
- } );
- Object.defineProperties( LOD.prototype, {
- objects: {
- get: function () {
- console.warn( 'THREE.LOD: .objects has been renamed to .levels.' );
- return this.levels;
- }
- }
- } );
- //
- PerspectiveCamera.prototype.setLens = function ( focalLength, filmGauge ) {
- console.warn( "THREE.PerspectiveCamera.setLens is deprecated. " +
- "Use .setFocalLength and .filmGauge for a photographic setup." );
- if ( filmGauge !== undefined ) this.filmGauge = filmGauge;
- this.setFocalLength( focalLength );
- };
- //
- Object.defineProperties( Light.prototype, {
- onlyShadow: {
- set: function () {
- console.warn( 'THREE.Light: .onlyShadow has been removed.' );
- }
- },
- shadowCameraFov: {
- set: function ( value ) {
- console.warn( 'THREE.Light: .shadowCameraFov is now .shadow.camera.fov.' );
- this.shadow.camera.fov = value;
- }
- },
- shadowCameraLeft: {
- set: function ( value ) {
- console.warn( 'THREE.Light: .shadowCameraLeft is now .shadow.camera.left.' );
- this.shadow.camera.left = value;
- }
- },
- shadowCameraRight: {
- set: function ( value ) {
- console.warn( 'THREE.Light: .shadowCameraRight is now .shadow.camera.right.' );
- this.shadow.camera.right = value;
- }
- },
- shadowCameraTop: {
- set: function ( value ) {
- console.warn( 'THREE.Light: .shadowCameraTop is now .shadow.camera.top.' );
- this.shadow.camera.top = value;
- }
- },
- shadowCameraBottom: {
- set: function ( value ) {
- console.warn( 'THREE.Light: .shadowCameraBottom is now .shadow.camera.bottom.' );
- this.shadow.camera.bottom = value;
- }
- },
- shadowCameraNear: {
- set: function ( value ) {
- console.warn( 'THREE.Light: .shadowCameraNear is now .shadow.camera.near.' );
- this.shadow.camera.near = value;
- }
- },
- shadowCameraFar: {
- set: function ( value ) {
- console.warn( 'THREE.Light: .shadowCameraFar is now .shadow.camera.far.' );
- this.shadow.camera.far = value;
- }
- },
- shadowCameraVisible: {
- set: function () {
- console.warn( 'THREE.Light: .shadowCameraVisible has been removed. Use new THREE.CameraHelper( light.shadow.camera ) instead.' );
- }
- },
- shadowBias: {
- set: function ( value ) {
- console.warn( 'THREE.Light: .shadowBias is now .shadow.bias.' );
- this.shadow.bias = value;
- }
- },
- shadowDarkness: {
- set: function () {
- console.warn( 'THREE.Light: .shadowDarkness has been removed.' );
- }
- },
- shadowMapWidth: {
- set: function ( value ) {
- console.warn( 'THREE.Light: .shadowMapWidth is now .shadow.mapSize.width.' );
- this.shadow.mapSize.width = value;
- }
- },
- shadowMapHeight: {
- set: function ( value ) {
- console.warn( 'THREE.Light: .shadowMapHeight is now .shadow.mapSize.height.' );
- this.shadow.mapSize.height = value;
- }
- }
- } );
- //
- Object.defineProperties( BufferAttribute.prototype, {
- length: {
- get: function () {
- console.warn( 'THREE.BufferAttribute: .length has been deprecated. Use .count instead.' );
- return this.array.length;
- }
- }
- } );
- Object.assign( BufferGeometry.prototype, {
- addIndex: function ( index ) {
- console.warn( 'THREE.BufferGeometry: .addIndex() has been renamed to .setIndex().' );
- this.setIndex( index );
- },
- addDrawCall: function ( start, count, indexOffset ) {
- if ( indexOffset !== undefined ) {
- console.warn( 'THREE.BufferGeometry: .addDrawCall() no longer supports indexOffset.' );
- }
- console.warn( 'THREE.BufferGeometry: .addDrawCall() is now .addGroup().' );
- this.addGroup( start, count );
- },
- clearDrawCalls: function () {
- console.warn( 'THREE.BufferGeometry: .clearDrawCalls() is now .clearGroups().' );
- this.clearGroups();
- },
- computeTangents: function () {
- console.warn( 'THREE.BufferGeometry: .computeTangents() has been removed.' );
- },
- computeOffsets: function () {
- console.warn( 'THREE.BufferGeometry: .computeOffsets() has been removed.' );
- }
- } );
- Object.defineProperties( BufferGeometry.prototype, {
- drawcalls: {
- get: function () {
- console.error( 'THREE.BufferGeometry: .drawcalls has been renamed to .groups.' );
- return this.groups;
- }
- },
- offsets: {
- get: function () {
- console.warn( 'THREE.BufferGeometry: .offsets has been renamed to .groups.' );
- return this.groups;
- }
- }
- } );
- //
- Object.defineProperties( Uniform.prototype, {
- dynamic: {
- set: function () {
- console.warn( 'THREE.Uniform: .dynamic has been removed. Use object.onBeforeRender() instead.' );
- }
- },
- onUpdate: {
- value: function () {
- console.warn( 'THREE.Uniform: .onUpdate() has been removed. Use object.onBeforeRender() instead.' );
- return this;
- }
- }
- } );
- //
- Object.defineProperties( Material.prototype, {
- wrapAround: {
- get: function () {
- console.warn( 'THREE.' + this.type + ': .wrapAround has been removed.' );
- },
- set: function () {
- console.warn( 'THREE.' + this.type + ': .wrapAround has been removed.' );
- }
- },
- wrapRGB: {
- get: function () {
- console.warn( 'THREE.' + this.type + ': .wrapRGB has been removed.' );
- return new Color();
- }
- }
- } );
- Object.defineProperties( MeshPhongMaterial.prototype, {
- metal: {
- get: function () {
- console.warn( 'THREE.MeshPhongMaterial: .metal has been removed. Use THREE.MeshStandardMaterial instead.' );
- return false;
- },
- set: function () {
- console.warn( 'THREE.MeshPhongMaterial: .metal has been removed. Use THREE.MeshStandardMaterial instead' );
- }
- }
- } );
- Object.defineProperties( ShaderMaterial.prototype, {
- derivatives: {
- get: function () {
- console.warn( 'THREE.ShaderMaterial: .derivatives has been moved to .extensions.derivatives.' );
- return this.extensions.derivatives;
- },
- set: function ( value ) {
- console.warn( 'THREE. ShaderMaterial: .derivatives has been moved to .extensions.derivatives.' );
- this.extensions.derivatives = value;
- }
- }
- } );
- //
- Object.assign( WebGLRenderer.prototype, {
- supportsFloatTextures: function () {
- console.warn( 'THREE.WebGLRenderer: .supportsFloatTextures() is now .extensions.get( \'OES_texture_float\' ).' );
- return this.extensions.get( 'OES_texture_float' );
- },
- supportsHalfFloatTextures: function () {
- console.warn( 'THREE.WebGLRenderer: .supportsHalfFloatTextures() is now .extensions.get( \'OES_texture_half_float\' ).' );
- return this.extensions.get( 'OES_texture_half_float' );
- },
- supportsStandardDerivatives: function () {
- console.warn( 'THREE.WebGLRenderer: .supportsStandardDerivatives() is now .extensions.get( \'OES_standard_derivatives\' ).' );
- return this.extensions.get( 'OES_standard_derivatives' );
- },
- supportsCompressedTextureS3TC: function () {
- console.warn( 'THREE.WebGLRenderer: .supportsCompressedTextureS3TC() is now .extensions.get( \'WEBGL_compressed_texture_s3tc\' ).' );
- return this.extensions.get( 'WEBGL_compressed_texture_s3tc' );
- },
- supportsCompressedTexturePVRTC: function () {
- console.warn( 'THREE.WebGLRenderer: .supportsCompressedTexturePVRTC() is now .extensions.get( \'WEBGL_compressed_texture_pvrtc\' ).' );
- return this.extensions.get( 'WEBGL_compressed_texture_pvrtc' );
- },
- supportsBlendMinMax: function () {
- console.warn( 'THREE.WebGLRenderer: .supportsBlendMinMax() is now .extensions.get( \'EXT_blend_minmax\' ).' );
- return this.extensions.get( 'EXT_blend_minmax' );
- },
- supportsVertexTextures: function () {
- console.warn( 'THREE.WebGLRenderer: .supportsVertexTextures() is now .capabilities.vertexTextures.' );
- return this.capabilities.vertexTextures;
- },
- supportsInstancedArrays: function () {
- console.warn( 'THREE.WebGLRenderer: .supportsInstancedArrays() is now .extensions.get( \'ANGLE_instanced_arrays\' ).' );
- return this.extensions.get( 'ANGLE_instanced_arrays' );
- },
- enableScissorTest: function ( boolean ) {
- console.warn( 'THREE.WebGLRenderer: .enableScissorTest() is now .setScissorTest().' );
- this.setScissorTest( boolean );
- },
- initMaterial: function () {
- console.warn( 'THREE.WebGLRenderer: .initMaterial() has been removed.' );
- },
- addPrePlugin: function () {
- console.warn( 'THREE.WebGLRenderer: .addPrePlugin() has been removed.' );
- },
- addPostPlugin: function () {
- console.warn( 'THREE.WebGLRenderer: .addPostPlugin() has been removed.' );
- },
- updateShadowMap: function () {
- console.warn( 'THREE.WebGLRenderer: .updateShadowMap() has been removed.' );
- }
- } );
- Object.defineProperties( WebGLRenderer.prototype, {
- shadowMapEnabled: {
- get: function () {
- return this.shadowMap.enabled;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderer: .shadowMapEnabled is now .shadowMap.enabled.' );
- this.shadowMap.enabled = value;
- }
- },
- shadowMapType: {
- get: function () {
- return this.shadowMap.type;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderer: .shadowMapType is now .shadowMap.type.' );
- this.shadowMap.type = value;
- }
- },
- shadowMapCullFace: {
- get: function () {
- return this.shadowMap.cullFace;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderer: .shadowMapCullFace is now .shadowMap.cullFace.' );
- this.shadowMap.cullFace = value;
- }
- }
- } );
- Object.defineProperties( WebGLShadowMap.prototype, {
- cullFace: {
- get: function () {
- return this.renderReverseSided ? CullFaceFront : CullFaceBack;
- },
- set: function ( cullFace ) {
- var value = ( cullFace !== CullFaceBack );
- console.warn( "WebGLRenderer: .shadowMap.cullFace is deprecated. Set .shadowMap.renderReverseSided to " + value + "." );
- this.renderReverseSided = value;
- }
- }
- } );
- //
- Object.defineProperties( WebGLRenderTarget.prototype, {
- wrapS: {
- get: function () {
- console.warn( 'THREE.WebGLRenderTarget: .wrapS is now .texture.wrapS.' );
- return this.texture.wrapS;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderTarget: .wrapS is now .texture.wrapS.' );
- this.texture.wrapS = value;
- }
- },
- wrapT: {
- get: function () {
- console.warn( 'THREE.WebGLRenderTarget: .wrapT is now .texture.wrapT.' );
- return this.texture.wrapT;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderTarget: .wrapT is now .texture.wrapT.' );
- this.texture.wrapT = value;
- }
- },
- magFilter: {
- get: function () {
- console.warn( 'THREE.WebGLRenderTarget: .magFilter is now .texture.magFilter.' );
- return this.texture.magFilter;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderTarget: .magFilter is now .texture.magFilter.' );
- this.texture.magFilter = value;
- }
- },
- minFilter: {
- get: function () {
- console.warn( 'THREE.WebGLRenderTarget: .minFilter is now .texture.minFilter.' );
- return this.texture.minFilter;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderTarget: .minFilter is now .texture.minFilter.' );
- this.texture.minFilter = value;
- }
- },
- anisotropy: {
- get: function () {
- console.warn( 'THREE.WebGLRenderTarget: .anisotropy is now .texture.anisotropy.' );
- return this.texture.anisotropy;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderTarget: .anisotropy is now .texture.anisotropy.' );
- this.texture.anisotropy = value;
- }
- },
- offset: {
- get: function () {
- console.warn( 'THREE.WebGLRenderTarget: .offset is now .texture.offset.' );
- return this.texture.offset;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderTarget: .offset is now .texture.offset.' );
- this.texture.offset = value;
- }
- },
- repeat: {
- get: function () {
- console.warn( 'THREE.WebGLRenderTarget: .repeat is now .texture.repeat.' );
- return this.texture.repeat;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderTarget: .repeat is now .texture.repeat.' );
- this.texture.repeat = value;
- }
- },
- format: {
- get: function () {
- console.warn( 'THREE.WebGLRenderTarget: .format is now .texture.format.' );
- return this.texture.format;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderTarget: .format is now .texture.format.' );
- this.texture.format = value;
- }
- },
- type: {
- get: function () {
- console.warn( 'THREE.WebGLRenderTarget: .type is now .texture.type.' );
- return this.texture.type;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderTarget: .type is now .texture.type.' );
- this.texture.type = value;
- }
- },
- generateMipmaps: {
- get: function () {
- console.warn( 'THREE.WebGLRenderTarget: .generateMipmaps is now .texture.generateMipmaps.' );
- return this.texture.generateMipmaps;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderTarget: .generateMipmaps is now .texture.generateMipmaps.' );
- this.texture.generateMipmaps = value;
- }
- }
- } );
- //
- Audio.prototype.load = function ( file ) {
- console.warn( 'THREE.Audio: .load has been deprecated. Use THREE.AudioLoader instead.' );
- var scope = this;
- var audioLoader = new AudioLoader();
- audioLoader.load( file, function ( buffer ) {
- scope.setBuffer( buffer );
- } );
- return this;
- };
- AudioAnalyser.prototype.getData = function () {
- console.warn( 'THREE.AudioAnalyser: .getData() is now .getFrequencyData().' );
- return this.getFrequencyData();
- };
- //
- export var GeometryUtils = {
- merge: function ( geometry1, geometry2, materialIndexOffset ) {
- console.warn( 'THREE.GeometryUtils: .merge() has been moved to Geometry. Use geometry.merge( geometry2, matrix, materialIndexOffset ) instead.' );
- var matrix;
- if ( geometry2.isMesh ) {
- geometry2.matrixAutoUpdate && geometry2.updateMatrix();
- matrix = geometry2.matrix;
- geometry2 = geometry2.geometry;
- }
- geometry1.merge( geometry2, matrix, materialIndexOffset );
- },
- center: function ( geometry ) {
- console.warn( 'THREE.GeometryUtils: .center() has been moved to Geometry. Use geometry.center() instead.' );
- return geometry.center();
- }
- };
- export var ImageUtils = {
- crossOrigin: undefined,
- loadTexture: function ( url, mapping, onLoad, onError ) {
- console.warn( 'THREE.ImageUtils.loadTexture has been deprecated. Use THREE.TextureLoader() instead.' );
- var loader = new TextureLoader();
- loader.setCrossOrigin( this.crossOrigin );
- var texture = loader.load( url, onLoad, undefined, onError );
- if ( mapping ) texture.mapping = mapping;
- return texture;
- },
- loadTextureCube: function ( urls, mapping, onLoad, onError ) {
- console.warn( 'THREE.ImageUtils.loadTextureCube has been deprecated. Use THREE.CubeTextureLoader() instead.' );
- var loader = new CubeTextureLoader();
- loader.setCrossOrigin( this.crossOrigin );
- var texture = loader.load( urls, onLoad, undefined, onError );
- if ( mapping ) texture.mapping = mapping;
- return texture;
- },
- loadCompressedTexture: function () {
- console.error( 'THREE.ImageUtils.loadCompressedTexture has been removed. Use THREE.DDSLoader instead.' );
- },
- loadCompressedTextureCube: function () {
- console.error( 'THREE.ImageUtils.loadCompressedTextureCube has been removed. Use THREE.DDSLoader instead.' );
- }
- };
- //
- export function Projector() {
- console.error( 'THREE.Projector has been moved to /examples/js/renderers/Projector.js.' );
- this.projectVector = function ( vector, camera ) {
- console.warn( 'THREE.Projector: .projectVector() is now vector.project().' );
- vector.project( camera );
- };
- this.unprojectVector = function ( vector, camera ) {
- console.warn( 'THREE.Projector: .unprojectVector() is now vector.unproject().' );
- vector.unproject( camera );
- };
- this.pickingRay = function () {
- console.error( 'THREE.Projector: .pickingRay() is now raycaster.setFromCamera().' );
- };
- }
- //
- export function CanvasRenderer() {
- console.error( 'THREE.CanvasRenderer has been moved to /examples/js/renderers/CanvasRenderer.js' );
- this.domElement = document.createElementNS( 'http://www.w3.org/1999/xhtml', 'canvas' );
- this.clear = function () {};
- this.render = function () {};
- this.setClearColor = function () {};
- this.setSize = function () {};
- }
|