UNPKG

three

Version:

JavaScript 3D library

19 lines (10 loc) 211 B
class RenderBundle { constructor( scene, camera ) { this.scene = scene; this.camera = camera; } clone() { return Object.assign( new this.constructor(), this ); } } export default RenderBundle;