Skip to content

⬅️ Back to Table of Contents

📄 RenderBundle.js

📊 Analysis Summary

Metric Count
🧱 Classes 1

📚 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;

    }

}