| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- /**
- * @author mr.doob / http://mrdoob.com/
- */
- THREE.Scene = function () {
- THREE.Object3D.call( this );
- this.fog = null;
- this.overrideMaterial = null;
- this.matrixAutoUpdate = false;
- this.__objects = [];
- this.__lights = [];
- this.__objectsAdded = [];
- this.__objectsRemoved = [];
- };
- THREE.Scene.prototype = new THREE.Object3D();
- THREE.Scene.prototype.constructor = THREE.Scene;
- THREE.Scene.prototype.addObject = function ( object ) {
- if ( object instanceof THREE.Light ) {
- if ( this.__lights.indexOf( object ) === - 1 ) {
- this.__lights.push( object );
- }
- if ( object.target && object.target.parent === undefined ) {
- this.add( object.target );
- }
- } else if ( !( object instanceof THREE.Camera || object instanceof THREE.Bone ) ) {
- if ( this.__objects.indexOf( object ) === - 1 ) {
- this.__objects.push( object );
- this.__objectsAdded.push( object );
- // check if previously removed
- var i = this.__objectsRemoved.indexOf( object );
- if ( i !== -1 ) {
- this.__objectsRemoved.splice( i, 1 );
- }
- }
- }
- for ( var c = 0; c < object.children.length; c ++ ) {
- this.addObject( object.children[ c ] );
- }
- };
- THREE.Scene.prototype.removeObject = function ( object ) {
- if ( object instanceof THREE.Light ) {
- var i = this.__lights.indexOf( object );
- if ( i !== -1 ) {
- this.__lights.splice( i, 1 );
- }
- } else if ( !( object instanceof THREE.Camera ) ) {
- var i = this.__objects.indexOf( object );
- if( i !== -1 ) {
- this.__objects.splice( i, 1 );
- this.__objectsRemoved.push( object );
- // check if previously added
- var ai = this.__objectsAdded.indexOf( object );
- if ( ai !== -1 ) {
- this.__objectsAdded.splice( ai, 1 );
- }
- }
- }
- for ( var c = 0; c < object.children.length; c ++ ) {
- this.removeObject( object.children[ c ] );
- }
- };
|