⬅️ Back to Table of Contents
📄 RenderBundle.js
📊 Analysis Summary
📚 Table of Contents
🛠️ File Location:
📂 src/renderers/common/RenderBundle.js
Classes
RenderBundle
Class Code
class RenderBundle {
/**
* Constructs a new bundle group.
*
* @param {BundleGroup} bundleGroup - The bundle group.
* @param {Camera} camera - The camera the bundle group is rendered with.
*/
constructor( bundleGroup, camera ) {
this.bundleGroup = bundleGroup;
this.camera = camera;
}
}