ImmediateRenderObject.js 269 B

12345678910111213
  1. /**
  2. * @author alteredq / http://alteredqualia.com/
  3. */
  4. THREE.ImmediateRenderObject = function () {
  5. THREE.Object3D.call( this );
  6. this.render = function ( renderCallback ) { };
  7. };
  8. THREE.ImmediateRenderObject.prototype = Object.create( THREE.Object3D.prototype );
粤ICP备19079148号