nanobot-voice-interface/frontend/node_modules/three/examples/jsm/renderers/common/RenderBundle.js
2026-03-06 22:51:19 -05:00

18 lines
211 B
JavaScript

class RenderBundle {
constructor( scene, camera ) {
this.scene = scene;
this.camera = camera;
}
clone() {
return Object.assign( new this.constructor(), this );
}
}
export default RenderBundle;