UNPKG

@types/three

Version:
26 lines (23 loc) 791 B
import { Camera } from "../../cameras/Camera.js"; import BundleGroup from "./BundleGroup.js"; import RenderContext from "./RenderContext.js"; /** * This module is used to represent render bundles inside the renderer * for further processing. * * @private */ declare class RenderBundle { /** * Constructs a new bundle group. * * @param {BundleGroup} bundleGroup - The bundle group. * @param {Camera} camera - The camera the bundle group is rendered with. * @param {RenderContext} renderContext - The render context the bundle is rendered with. */ constructor(bundleGroup: BundleGroup, camera: Camera, renderContext: RenderContext); bundleGroup: BundleGroup; camera: Camera; renderContext: RenderContext; } export default RenderBundle;