Scene.js 291 B

1234567891011121314151617
  1. /**
  2. * @author mr.doob / http://mrdoob.com/
  3. */
  4. THREE.Scene = function () {
  5. THREE.Object3D.call( this );
  6. this.fog = null;
  7. this.overrideMaterial = null;
  8. this.matrixAutoUpdate = false;
  9. };
  10. THREE.Scene.prototype = new THREE.Object3D();
  11. THREE.Scene.prototype.constructor = THREE.Scene;