QRenderSettings

PyQt5.Qt3DRender.QRenderSettings

Inherits from QComponent.

Description

The QRenderSettings class holds settings related to rendering process and host the active FrameGraph.

The QRenderSettings component must be set as a component of the scene root entity. It specifies render policy and picking settings, as well as hosts the active FrameGraph.

Enums

RenderPolicy

The render policy.

Member

Value

Description

Always

1

The FrameGraph is rendered continuously, even if nothing has changed.

OnDemand

0

The FrameGraph is rendered only when something changes.

Methods

__init__(parent: QNode = None)

TODO


activeFrameGraph() → QFrameGraphNode

pickingSettings() → QPickingSettings

TODO


renderPolicy() → RenderPolicy

See also

setRenderPolicy().


setActiveFrameGraph(QFrameGraphNode)

See also

activeFrameGraph().


setRenderPolicy(RenderPolicy)

See also

renderPolicy().

Signals

activeFrameGraphChanged(QFrameGraphNode)

TODO


renderPolicyChanged(RenderPolicy)

TODO