UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

53 lines 2.66 kB
import { __decorate } from "../../../../tslib.es6.js"; import { RegisterClass } from "../../../../Misc/typeStore.js"; import { editableInPropertyPage } from "../../../../Decorators/nodeDecorator.js"; import { FrameGraphObjectRendererTask } from "../../../Tasks/Rendering/objectRendererTask.js"; import { NodeRenderGraphBaseObjectRendererBlock } from "./baseObjectRendererBlock.js"; /** * Block that render objects to a render target */ export class NodeRenderGraphObjectRendererBlock extends NodeRenderGraphBaseObjectRendererBlock { /** * Create a new NodeRenderGraphObjectRendererBlock * @param name defines the block name * @param frameGraph defines the hosting frame graph * @param scene defines the hosting scene * @param doNotChangeAspectRatio True (default) to not change the aspect ratio of the scene in the RTT */ constructor(name, frameGraph, scene, doNotChangeAspectRatio = true) { super(name, frameGraph, scene); this._additionalConstructionParameters = [doNotChangeAspectRatio]; this._frameGraphTask = new FrameGraphObjectRendererTask(this.name, frameGraph, scene, { doNotChangeAspectRatio }); } /** True (default) to not change the aspect ratio of the scene in the RTT */ get doNotChangeAspectRatio() { return this._frameGraphTask.objectRenderer.options.doNotChangeAspectRatio; } set doNotChangeAspectRatio(value) { const disabled = this._frameGraphTask.disabled; const depthTest = this.depthTest; const depthWrite = this.depthWrite; const disableShadows = this.disableShadows; const renderInLinearSpace = this.renderInLinearSpace; this._frameGraphTask.dispose(); this._frameGraphTask = new FrameGraphObjectRendererTask(this.name, this._frameGraph, this._scene, { doNotChangeAspectRatio: value }); this._additionalConstructionParameters = [value]; this.depthTest = depthTest; this.depthWrite = depthWrite; this.disableShadows = disableShadows; this.renderInLinearSpace = renderInLinearSpace; this._frameGraphTask.disabled = disabled; } /** * Gets the current class name * @returns the class name */ getClassName() { return "NodeRenderGraphObjectRendererBlock"; } } __decorate([ editableInPropertyPage("Do not change aspect ratio", 0 /* PropertyTypeForEdition.Boolean */, "PROPERTIES") ], NodeRenderGraphObjectRendererBlock.prototype, "doNotChangeAspectRatio", null); RegisterClass("BABYLON.NodeRenderGraphObjectRendererBlock", NodeRenderGraphObjectRendererBlock); //# sourceMappingURL=objectRendererBlock.js.map