123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142 |
- import { Audio } from './audio/Audio.js';
- import { AudioAnalyser } from './audio/AudioAnalyser.js';
- import { PerspectiveCamera } from './cameras/PerspectiveCamera.js';
- import {
- FlatShading,
- sRGBEncoding,
- LinearEncoding,
- StaticDrawUsage,
- DynamicDrawUsage,
- TrianglesDrawMode
- } 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 { InstancedBufferGeometry } from './core/InstancedBufferGeometry.js';
- import { InterleavedBuffer } from './core/InterleavedBuffer.js';
- import { Object3D } from './core/Object3D.js';
- import { Uniform } from './core/Uniform.js';
- import { Raycaster } from './core/Raycaster.js';
- import { Curve } from './extras/core/Curve.js';
- import { Path } from './extras/core/Path.js';
- import { CatmullRomCurve3 } from './extras/curves/CatmullRomCurve3.js';
- import { AxesHelper } from './helpers/AxesHelper.js';
- import { BoxHelper } from './helpers/BoxHelper.js';
- import { GridHelper } from './helpers/GridHelper.js';
- import { SkeletonHelper } from './helpers/SkeletonHelper.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 { Loader } from './loaders/Loader.js';
- import { LoaderUtils } from './loaders/LoaderUtils.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 { MeshPhysicalMaterial } from './materials/MeshPhysicalMaterial.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 { Sphere } from './math/Sphere.js';
- import { Color } from './math/Color.js';
- import { Frustum } from './math/Frustum.js';
- import { Line3 } from './math/Line3.js';
- import { MathUtils } from './math/MathUtils.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 { Triangle } from './math/Triangle.js';
- import { Vector2 } from './math/Vector2.js';
- import { Vector3 } from './math/Vector3.js';
- import { Vector4 } from './math/Vector4.js';
- import { Mesh } from './objects/Mesh.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 { Skeleton } from './objects/Skeleton.js';
- import { SkinnedMesh } from './objects/SkinnedMesh.js';
- import { WebGLRenderer } from './renderers/WebGLRenderer.js';
- import { WebGLRenderTarget } from './renderers/WebGLRenderTarget.js';
- import { WebGLCubeRenderTarget } from './renderers/WebGLCubeRenderTarget.js';
- import { WebGLShadowMap } from './renderers/webgl/WebGLShadowMap.js';
- import { ImageUtils } from './extras/ImageUtils.js';
- import { Shape } from './extras/core/Shape.js';
- import { CubeCamera } from './cameras/CubeCamera.js';
- import { Scene } from './scenes/Scene.js';
- export { MathUtils as Math };
- export const LineStrip = 0;
- export const LinePieces = 1;
- export const NoColors = 0;
- export const FaceColors = 1;
- export const VertexColors = 2;
- export function MeshFaceMaterial( materials ) {
- console.warn( 'THREE.MeshFaceMaterial has been removed. Use an Array instead.' );
- return materials;
- }
- export function MultiMaterial( materials = [] ) {
- console.warn( 'THREE.MultiMaterial has been removed. Use an Array instead.' );
- materials.isMultiMaterial = true;
- materials.materials = materials;
- materials.clone = function () {
- return materials.slice();
- };
- return 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().setUsage( THREE.DynamicDrawUsage ) instead.' );
- return new BufferAttribute( array, itemSize ).setUsage( DynamicDrawUsage );
- }
- 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;
- };
- //
- Object.assign( Path.prototype, {
- fromPoints: function ( points ) {
- console.warn( 'THREE.Path: .fromPoints() has been renamed to .setFromPoints().' );
- return this.setFromPoints( points );
- }
- } );
- //
- 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 AxisHelper( size ) {
- console.warn( 'THREE.AxisHelper has been renamed to THREE.AxesHelper.' );
- return new AxesHelper( size );
- }
- 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.' );
- };
- SkeletonHelper.prototype.update = function () {
- console.error( 'THREE.SkeletonHelper: update() no longer needs to be called.' );
- };
- 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 } ) );
- }
- //
- Object.assign( Loader.prototype, {
- extractUrlBase: function ( url ) {
- console.warn( 'THREE.Loader: .extractUrlBase() has been deprecated. Use THREE.LoaderUtils.extractUrlBase() instead.' );
- return LoaderUtils.extractUrlBase( url );
- }
- } );
- Loader.Handlers = {
- add: function ( /* regex, loader */ ) {
- console.error( 'THREE.Loader: Handlers.add() has been removed. Use LoadingManager.addHandler() instead.' );
- },
- get: function ( /* file */ ) {
- console.error( 'THREE.Loader: Handlers.get() has been removed. Use LoadingManager.getHandler() instead.' );
- }
- };
- 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 );
- }
- } );
- Object.assign( Sphere.prototype, {
- empty: function () {
- console.warn( 'THREE.Sphere: .empty() has been renamed to .isEmpty().' );
- return this.isEmpty();
- },
- } );
- Frustum.prototype.setFromMatrix = function ( m ) {
- console.warn( 'THREE.Frustum: .setFromMatrix() has been renamed to .setFromProjectionMatrix().' );
- return this.setFromProjectionMatrix( m );
- };
- Line3.prototype.center = function ( optionalTarget ) {
- console.warn( 'THREE.Line3: .center() has been renamed to .getCenter().' );
- return this.getCenter( optionalTarget );
- };
- Object.assign( MathUtils, {
- random16: function () {
- console.warn( 'THREE.Math: .random16() has been deprecated. Use Math.random() instead.' );
- return Math.random();
- },
- nearestPowerOfTwo: function ( value ) {
- console.warn( 'THREE.Math: .nearestPowerOfTwo() has been renamed to .floorPowerOfTwo().' );
- return MathUtils.floorPowerOfTwo( value );
- },
- nextPowerOfTwo: function ( value ) {
- console.warn( 'THREE.Math: .nextPowerOfTwo() has been renamed to .ceilPowerOfTwo().' );
- return MathUtils.ceilPowerOfTwo( value );
- }
- } );
- 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.error( 'THREE.Matrix3: .multiplyVector3Array() has been removed.' );
- },
- applyToBufferAttribute: function ( attribute ) {
- console.warn( 'THREE.Matrix3: .applyToBufferAttribute() has been removed. Use attribute.applyMatrix3( matrix ) instead.' );
- return attribute.applyMatrix3( this );
- },
- applyToVector3Array: function ( /* array, offset, length */ ) {
- console.error( 'THREE.Matrix3: .applyToVector3Array() has been removed.' );
- },
- getInverse: function ( matrix ) {
- console.warn( 'THREE.Matrix3: .getInverse() has been removed. Use matrixInv.copy( matrix ).invert(); instead.' );
- return this.copy( matrix ).invert();
- }
- } );
- 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 () {
- console.warn( 'THREE.Matrix4: .getPosition() has been removed. Use Vector3.setFromMatrixPosition( matrix ) instead.' );
- return new Vector3().setFromMatrixColumn( this, 3 );
- },
- setRotationFromQuaternion: function ( q ) {
- console.warn( 'THREE.Matrix4: .setRotationFromQuaternion() has been renamed to .makeRotationFromQuaternion().' );
- return this.makeRotationFromQuaternion( q );
- },
- multiplyToArray: function () {
- console.warn( 'THREE.Matrix4: .multiplyToArray() has been removed.' );
- },
- 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.error( 'THREE.Matrix4: .multiplyVector3Array() has been removed.' );
- },
- 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.' );
- },
- applyToBufferAttribute: function ( attribute ) {
- console.warn( 'THREE.Matrix4: .applyToBufferAttribute() has been removed. Use attribute.applyMatrix4( matrix ) instead.' );
- return attribute.applyMatrix4( this );
- },
- 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 );
- },
- getInverse: function ( matrix ) {
- console.warn( 'THREE.Matrix4: .getInverse() has been removed. Use matrixInv.copy( matrix ).invert(); instead.' );
- return this.copy( matrix ).invert();
- }
- } );
- Plane.prototype.isIntersectionLine = function ( line ) {
- console.warn( 'THREE.Plane: .isIntersectionLine() has been renamed to .intersectsLine().' );
- return this.intersectsLine( line );
- };
- Object.assign( Quaternion.prototype, {
- multiplyVector3: function ( vector ) {
- console.warn( 'THREE.Quaternion: .multiplyVector3() has been removed. Use is now vector.applyQuaternion( quaternion ) instead.' );
- return vector.applyQuaternion( this );
- },
- inverse: function ( ) {
- console.warn( 'THREE.Quaternion: .inverse() has been renamed to invert().' );
- return this.invert();
- }
- } );
- 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( Triangle.prototype, {
- area: function () {
- console.warn( 'THREE.Triangle: .area() has been renamed to .getArea().' );
- return this.getArea();
- },
- barycoordFromPoint: function ( point, target ) {
- console.warn( 'THREE.Triangle: .barycoordFromPoint() has been renamed to .getBarycoord().' );
- return this.getBarycoord( point, target );
- },
- midpoint: function ( target ) {
- console.warn( 'THREE.Triangle: .midpoint() has been renamed to .getMidpoint().' );
- return this.getMidpoint( target );
- },
- normal: function ( target ) {
- console.warn( 'THREE.Triangle: .normal() has been renamed to .getNormal().' );
- return this.getNormal( target );
- },
- plane: function ( target ) {
- console.warn( 'THREE.Triangle: .plane() has been renamed to .getPlane().' );
- return this.getPlane( target );
- }
- } );
- Object.assign( Triangle, {
- barycoordFromPoint: function ( point, a, b, c, target ) {
- console.warn( 'THREE.Triangle: .barycoordFromPoint() has been renamed to .getBarycoord().' );
- return Triangle.getBarycoord( point, a, b, c, target );
- },
- normal: function ( a, b, c, target ) {
- console.warn( 'THREE.Triangle: .normal() has been renamed to .getNormal().' );
- return Triangle.getNormal( a, b, c, target );
- }
- } );
- Object.assign( Shape.prototype, {
- extractAllPoints: function ( divisions ) {
- console.warn( 'THREE.Shape: .extractAllPoints() has been removed. Use .extractPoints() instead.' );
- return this.extractPoints( divisions );
- },
- 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.warn( 'THREE.Vector2: .fromAttribute() has been renamed to .fromBufferAttribute().' );
- return this.fromBufferAttribute( attribute, index, offset );
- },
- distanceToManhattan: function ( v ) {
- console.warn( 'THREE.Vector2: .distanceToManhattan() has been renamed to .manhattanDistanceTo().' );
- return this.manhattanDistanceTo( v );
- },
- lengthManhattan: function () {
- console.warn( 'THREE.Vector2: .lengthManhattan() has been renamed to .manhattanLength().' );
- return this.manhattanLength();
- }
- } );
- 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.warn( 'THREE.Vector3: .fromAttribute() has been renamed to .fromBufferAttribute().' );
- return this.fromBufferAttribute( attribute, index, offset );
- },
- distanceToManhattan: function ( v ) {
- console.warn( 'THREE.Vector3: .distanceToManhattan() has been renamed to .manhattanDistanceTo().' );
- return this.manhattanDistanceTo( v );
- },
- lengthManhattan: function () {
- console.warn( 'THREE.Vector3: .lengthManhattan() has been renamed to .manhattanLength().' );
- return this.manhattanLength();
- }
- } );
- Object.assign( Vector4.prototype, {
- fromAttribute: function ( attribute, index, offset ) {
- console.warn( 'THREE.Vector4: .fromAttribute() has been renamed to .fromBufferAttribute().' );
- return this.fromBufferAttribute( attribute, index, offset );
- },
- lengthManhattan: function () {
- console.warn( 'THREE.Vector4: .lengthManhattan() has been renamed to .manhattanLength().' );
- return this.manhattanLength();
- }
- } );
- //
- 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 );
- },
- getWorldRotation: function () {
- console.error( 'THREE.Object3D: .getWorldRotation() has been removed. Use THREE.Object3D.getWorldQuaternion( target ) instead.' );
- },
- applyMatrix: function ( matrix ) {
- console.warn( 'THREE.Object3D: .applyMatrix() has been renamed to .applyMatrix4().' );
- return this.applyMatrix4( matrix );
- }
- } );
- 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.assign( Mesh.prototype, {
- setDrawMode: function () {
- console.error( 'THREE.Mesh: .setDrawMode() has been removed. The renderer now always assumes THREE.TrianglesDrawMode. Transform your geometry via BufferGeometryUtils.toTrianglesDrawMode() if necessary.' );
- },
- } );
- Object.defineProperties( Mesh.prototype, {
- drawMode: {
- get: function () {
- console.error( 'THREE.Mesh: .drawMode has been removed. The renderer now always assumes THREE.TrianglesDrawMode.' );
- return TrianglesDrawMode;
- },
- set: function () {
- console.error( 'THREE.Mesh: .drawMode has been removed. The renderer now always assumes THREE.TrianglesDrawMode. Transform your geometry via BufferGeometryUtils.toTrianglesDrawMode() if necessary.' );
- }
- }
- } );
- Object.defineProperties( LOD.prototype, {
- objects: {
- get: function () {
- console.warn( 'THREE.LOD: .objects has been renamed to .levels.' );
- return this.levels;
- }
- }
- } );
- Object.defineProperty( Skeleton.prototype, 'useVertexTexture', {
- get: function () {
- console.warn( 'THREE.Skeleton: useVertexTexture has been removed.' );
- },
- set: function () {
- console.warn( 'THREE.Skeleton: useVertexTexture has been removed.' );
- }
- } );
- SkinnedMesh.prototype.initBones = function () {
- console.error( 'THREE.SkinnedMesh: initBones() has been removed.' );
- };
- Object.defineProperty( Curve.prototype, '__arcLengthDivisions', {
- get: function () {
- console.warn( 'THREE.Curve: .__arcLengthDivisions is now .arcLengthDivisions.' );
- return this.arcLengthDivisions;
- },
- set: function ( value ) {
- console.warn( 'THREE.Curve: .__arcLengthDivisions is now .arcLengthDivisions.' );
- this.arcLengthDivisions = value;
- }
- } );
- //
- 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;
- }
- },
- dynamic: {
- get: function () {
- console.warn( 'THREE.BufferAttribute: .dynamic has been deprecated. Use .usage instead.' );
- return this.usage === DynamicDrawUsage;
- },
- set: function ( /* value */ ) {
- console.warn( 'THREE.BufferAttribute: .dynamic has been deprecated. Use .usage instead.' );
- this.setUsage( DynamicDrawUsage );
- }
- }
- } );
- Object.assign( BufferAttribute.prototype, {
- setDynamic: function ( value ) {
- console.warn( 'THREE.BufferAttribute: .setDynamic() has been deprecated. Use .setUsage() instead.' );
- this.setUsage( value === true ? DynamicDrawUsage : StaticDrawUsage );
- return this;
- },
- copyIndicesArray: function ( /* indices */ ) {
- console.error( 'THREE.BufferAttribute: .copyIndicesArray() has been removed.' );
- },
- setArray: function ( /* array */ ) {
- console.error( 'THREE.BufferAttribute: .setArray has been removed. Use BufferGeometry .setAttribute to replace/resize attribute buffers' );
- }
- } );
- Object.assign( BufferGeometry.prototype, {
- addIndex: function ( index ) {
- console.warn( 'THREE.BufferGeometry: .addIndex() has been renamed to .setIndex().' );
- this.setIndex( index );
- },
- addAttribute: function ( name, attribute ) {
- console.warn( 'THREE.BufferGeometry: .addAttribute() has been renamed to .setAttribute().' );
- if ( ! ( attribute && attribute.isBufferAttribute ) && ! ( attribute && attribute.isInterleavedBufferAttribute ) ) {
- console.warn( 'THREE.BufferGeometry: .addAttribute() now expects ( name, attribute ).' );
- return this.setAttribute( name, new BufferAttribute( arguments[ 1 ], arguments[ 2 ] ) );
- }
- if ( name === 'index' ) {
- console.warn( 'THREE.BufferGeometry.addAttribute: Use .setIndex() for index attribute.' );
- this.setIndex( attribute );
- return this;
- }
- return this.setAttribute( name, attribute );
- },
- 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();
- },
- computeOffsets: function () {
- console.warn( 'THREE.BufferGeometry: .computeOffsets() has been removed.' );
- },
- removeAttribute: function ( name ) {
- console.warn( 'THREE.BufferGeometry: .removeAttribute() has been renamed to .deleteAttribute().' );
- return this.deleteAttribute( name );
- },
- applyMatrix: function ( matrix ) {
- console.warn( 'THREE.BufferGeometry: .applyMatrix() has been renamed to .applyMatrix4().' );
- return this.applyMatrix4( matrix );
- }
- } );
- 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( InstancedBufferGeometry.prototype, {
- maxInstancedCount: {
- get: function () {
- console.warn( 'THREE.InstancedBufferGeometry: .maxInstancedCount has been renamed to .instanceCount.' );
- return this.instanceCount;
- },
- set: function ( value ) {
- console.warn( 'THREE.InstancedBufferGeometry: .maxInstancedCount has been renamed to .instanceCount.' );
- this.instanceCount = value;
- }
- }
- } );
- Object.defineProperties( Raycaster.prototype, {
- linePrecision: {
- get: function () {
- console.warn( 'THREE.Raycaster: .linePrecision has been deprecated. Use .params.Line.threshold instead.' );
- return this.params.Line.threshold;
- },
- set: function ( value ) {
- console.warn( 'THREE.Raycaster: .linePrecision has been deprecated. Use .params.Line.threshold instead.' );
- this.params.Line.threshold = value;
- }
- }
- } );
- Object.defineProperties( InterleavedBuffer.prototype, {
- dynamic: {
- get: function () {
- console.warn( 'THREE.InterleavedBuffer: .length has been deprecated. Use .usage instead.' );
- return this.usage === DynamicDrawUsage;
- },
- set: function ( value ) {
- console.warn( 'THREE.InterleavedBuffer: .length has been deprecated. Use .usage instead.' );
- this.setUsage( value );
- }
- }
- } );
- Object.assign( InterleavedBuffer.prototype, {
- setDynamic: function ( value ) {
- console.warn( 'THREE.InterleavedBuffer: .setDynamic() has been deprecated. Use .setUsage() instead.' );
- this.setUsage( value === true ? DynamicDrawUsage : StaticDrawUsage );
- return this;
- },
- setArray: function ( /* array */ ) {
- console.error( 'THREE.InterleavedBuffer: .setArray has been removed. Use BufferGeometry .setAttribute to replace/resize attribute buffers' );
- }
- } );
- //
- Object.assign( ExtrudeGeometry.prototype, {
- getArrays: function () {
- console.error( 'THREE.ExtrudeGeometry: .getArrays() has been removed.' );
- },
- addShapeList: function () {
- console.error( 'THREE.ExtrudeGeometry: .addShapeList() has been removed.' );
- },
- addShape: function () {
- console.error( 'THREE.ExtrudeGeometry: .addShape() has been removed.' );
- }
- } );
- //
- Object.assign( Scene.prototype, {
- dispose: function () {
- console.error( 'THREE.Scene: .dispose() has been removed.' );
- }
- } );
- //
- 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.Material: .wrapAround has been removed.' );
- },
- set: function () {
- console.warn( 'THREE.Material: .wrapAround has been removed.' );
- }
- },
- overdraw: {
- get: function () {
- console.warn( 'THREE.Material: .overdraw has been removed.' );
- },
- set: function () {
- console.warn( 'THREE.Material: .overdraw has been removed.' );
- }
- },
- wrapRGB: {
- get: function () {
- console.warn( 'THREE.Material: .wrapRGB has been removed.' );
- return new Color();
- }
- },
- shading: {
- get: function () {
- console.error( 'THREE.' + this.type + ': .shading has been removed. Use the boolean .flatShading instead.' );
- },
- set: function ( value ) {
- console.warn( 'THREE.' + this.type + ': .shading has been removed. Use the boolean .flatShading instead.' );
- this.flatShading = ( value === FlatShading );
- }
- },
- stencilMask: {
- get: function () {
- console.warn( 'THREE.' + this.type + ': .stencilMask has been removed. Use .stencilFuncMask instead.' );
- return this.stencilFuncMask;
- },
- set: function ( value ) {
- console.warn( 'THREE.' + this.type + ': .stencilMask has been removed. Use .stencilFuncMask instead.' );
- this.stencilFuncMask = value;
- }
- }
- } );
- 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( MeshPhysicalMaterial.prototype, {
- transparency: {
- get: function () {
- console.warn( 'THREE.MeshPhysicalMaterial: .transparency has been renamed to .transmission.' );
- return this.transmission;
- },
- set: function ( value ) {
- console.warn( 'THREE.MeshPhysicalMaterial: .transparency has been renamed to .transmission.' );
- this.transmission = value;
- }
- }
- } );
- 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, {
- clearTarget: function ( renderTarget, color, depth, stencil ) {
- console.warn( 'THREE.WebGLRenderer: .clearTarget() has been deprecated. Use .setRenderTarget() and .clear() instead.' );
- this.setRenderTarget( renderTarget );
- this.clear( color, depth, stencil );
- },
- animate: function ( callback ) {
- console.warn( 'THREE.WebGLRenderer: .animate() is now .setAnimationLoop().' );
- this.setAnimationLoop( callback );
- },
- getCurrentRenderTarget: function () {
- console.warn( 'THREE.WebGLRenderer: .getCurrentRenderTarget() is now .getRenderTarget().' );
- return this.getRenderTarget();
- },
- getMaxAnisotropy: function () {
- console.warn( 'THREE.WebGLRenderer: .getMaxAnisotropy() is now .capabilities.getMaxAnisotropy().' );
- return this.capabilities.getMaxAnisotropy();
- },
- getPrecision: function () {
- console.warn( 'THREE.WebGLRenderer: .getPrecision() is now .capabilities.precision.' );
- return this.capabilities.precision;
- },
- resetGLState: function () {
- console.warn( 'THREE.WebGLRenderer: .resetGLState() is now .state.reset().' );
- return this.state.reset();
- },
- 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.' );
- },
- setFaceCulling: function () {
- console.warn( 'THREE.WebGLRenderer: .setFaceCulling() has been removed.' );
- },
- allocTextureUnit: function () {
- console.warn( 'THREE.WebGLRenderer: .allocTextureUnit() has been removed.' );
- },
- setTexture: function () {
- console.warn( 'THREE.WebGLRenderer: .setTexture() has been removed.' );
- },
- setTexture2D: function () {
- console.warn( 'THREE.WebGLRenderer: .setTexture2D() has been removed.' );
- },
- setTextureCube: function () {
- console.warn( 'THREE.WebGLRenderer: .setTextureCube() has been removed.' );
- },
- getActiveMipMapLevel: function () {
- console.warn( 'THREE.WebGLRenderer: .getActiveMipMapLevel() is now .getActiveMipmapLevel().' );
- return this.getActiveMipmapLevel();
- }
- } );
- 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 () {
- console.warn( 'THREE.WebGLRenderer: .shadowMapCullFace has been removed. Set Material.shadowSide instead.' );
- return undefined;
- },
- set: function ( /* value */ ) {
- console.warn( 'THREE.WebGLRenderer: .shadowMapCullFace has been removed. Set Material.shadowSide instead.' );
- }
- },
- context: {
- get: function () {
- console.warn( 'THREE.WebGLRenderer: .context has been removed. Use .getContext() instead.' );
- return this.getContext();
- }
- },
- vr: {
- get: function () {
- console.warn( 'THREE.WebGLRenderer: .vr has been renamed to .xr' );
- return this.xr;
- }
- },
- gammaInput: {
- get: function () {
- console.warn( 'THREE.WebGLRenderer: .gammaInput has been removed. Set the encoding for textures via Texture.encoding instead.' );
- return false;
- },
- set: function () {
- console.warn( 'THREE.WebGLRenderer: .gammaInput has been removed. Set the encoding for textures via Texture.encoding instead.' );
- }
- },
- gammaOutput: {
- get: function () {
- console.warn( 'THREE.WebGLRenderer: .gammaOutput has been removed. Set WebGLRenderer.outputEncoding instead.' );
- return false;
- },
- set: function ( value ) {
- console.warn( 'THREE.WebGLRenderer: .gammaOutput has been removed. Set WebGLRenderer.outputEncoding instead.' );
- this.outputEncoding = ( value === true ) ? sRGBEncoding : LinearEncoding;
- }
- },
- toneMappingWhitePoint: {
- get: function () {
- console.warn( 'THREE.WebGLRenderer: .toneMappingWhitePoint has been removed.' );
- return 1.0;
- },
- set: function () {
- console.warn( 'THREE.WebGLRenderer: .toneMappingWhitePoint has been removed.' );
- }
- },
- } );
- Object.defineProperties( WebGLShadowMap.prototype, {
- cullFace: {
- get: function () {
- console.warn( 'THREE.WebGLRenderer: .shadowMap.cullFace has been removed. Set Material.shadowSide instead.' );
- return undefined;
- },
- set: function ( /* cullFace */ ) {
- console.warn( 'THREE.WebGLRenderer: .shadowMap.cullFace has been removed. Set Material.shadowSide instead.' );
- }
- },
- renderReverseSided: {
- get: function () {
- console.warn( 'THREE.WebGLRenderer: .shadowMap.renderReverseSided has been removed. Set Material.shadowSide instead.' );
- return undefined;
- },
- set: function () {
- console.warn( 'THREE.WebGLRenderer: .shadowMap.renderReverseSided has been removed. Set Material.shadowSide instead.' );
- }
- },
- renderSingleSided: {
- get: function () {
- console.warn( 'THREE.WebGLRenderer: .shadowMap.renderSingleSided has been removed. Set Material.shadowSide instead.' );
- return undefined;
- },
- set: function () {
- console.warn( 'THREE.WebGLRenderer: .shadowMap.renderSingleSided has been removed. Set Material.shadowSide instead.' );
- }
- }
- } );
- export function WebGLRenderTargetCube( width, height, options ) {
- console.warn( 'THREE.WebGLRenderTargetCube( width, height, options ) is now WebGLCubeRenderTarget( size, options ).' );
- return new WebGLCubeRenderTarget( width, options );
- }
- //
- 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;
- }
- }
- } );
- //
- Object.defineProperties( Audio.prototype, {
- load: {
- value: function ( file ) {
- console.warn( 'THREE.Audio: .load has been deprecated. Use THREE.AudioLoader instead.' );
- const scope = this;
- const audioLoader = new AudioLoader();
- audioLoader.load( file, function ( buffer ) {
- scope.setBuffer( buffer );
- } );
- return this;
- }
- },
- startTime: {
- set: function () {
- console.warn( 'THREE.Audio: .startTime is now .play( delay ).' );
- }
- }
- } );
- AudioAnalyser.prototype.getData = function () {
- console.warn( 'THREE.AudioAnalyser: .getData() is now .getFrequencyData().' );
- return this.getFrequencyData();
- };
- //
- CubeCamera.prototype.updateCubeMap = function ( renderer, scene ) {
- console.warn( 'THREE.CubeCamera: .updateCubeMap() is now .update().' );
- return this.update( renderer, scene );
- };
- CubeCamera.prototype.clear = function ( renderer, color, depth, stencil ) {
- console.warn( 'THREE.CubeCamera: .clear() is now .renderTarget.clear().' );
- return this.renderTarget.clear( renderer, color, depth, stencil );
- };
- ImageUtils.crossOrigin = undefined;
- ImageUtils.loadTexture = function ( url, mapping, onLoad, onError ) {
- console.warn( 'THREE.ImageUtils.loadTexture has been deprecated. Use THREE.TextureLoader() instead.' );
- const loader = new TextureLoader();
- loader.setCrossOrigin( this.crossOrigin );
- const texture = loader.load( url, onLoad, undefined, onError );
- if ( mapping ) texture.mapping = mapping;
- return texture;
- };
- ImageUtils.loadTextureCube = function ( urls, mapping, onLoad, onError ) {
- console.warn( 'THREE.ImageUtils.loadTextureCube has been deprecated. Use THREE.CubeTextureLoader() instead.' );
- const loader = new CubeTextureLoader();
- loader.setCrossOrigin( this.crossOrigin );
- const texture = loader.load( urls, onLoad, undefined, onError );
- if ( mapping ) texture.mapping = mapping;
- return texture;
- };
- ImageUtils.loadCompressedTexture = function () {
- console.error( 'THREE.ImageUtils.loadCompressedTexture has been removed. Use THREE.DDSLoader instead.' );
- };
- ImageUtils.loadCompressedTextureCube = function () {
- console.error( 'THREE.ImageUtils.loadCompressedTextureCube has been removed. Use THREE.DDSLoader instead.' );
- };
- //
- export function CanvasRenderer() {
- console.error( 'THREE.CanvasRenderer has been removed' );
- }
- //
- export function JSONLoader() {
- console.error( 'THREE.JSONLoader has been removed.' );
- }
- //
- export const SceneUtils = {
- createMultiMaterialObject: function ( /* geometry, materials */ ) {
- console.error( 'THREE.SceneUtils has been moved to /examples/jsm/utils/SceneUtils.js' );
- },
- detach: function ( /* child, parent, scene */ ) {
- console.error( 'THREE.SceneUtils has been moved to /examples/jsm/utils/SceneUtils.js' );
- },
- attach: function ( /* child, scene, parent */ ) {
- console.error( 'THREE.SceneUtils has been moved to /examples/jsm/utils/SceneUtils.js' );
- }
- };
- //
- export function LensFlare() {
- console.error( 'THREE.LensFlare has been moved to /examples/jsm/objects/Lensflare.js' );
- }
|